From e5646398bd8d05f6bbffd0f18710f5d8e53df4b4 Mon Sep 17 00:00:00 2001 From: Tom Rondeau <tom@trondeau.com> Date: Thu, 26 Feb 2015 14:35:26 -0500 Subject: pmt: moves the rest of the PMT constants from static globals to using get_ functions. --- gnuradio-runtime/python/pmt/__init__.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gnuradio-runtime/python/pmt/__init__.py') diff --git a/gnuradio-runtime/python/pmt/__init__.py b/gnuradio-runtime/python/pmt/__init__.py index 1c7db73322..399fae8701 100644 --- a/gnuradio-runtime/python/pmt/__init__.py +++ b/gnuradio-runtime/python/pmt/__init__.py @@ -51,6 +51,9 @@ except ImportError: # due to changes in the PMT_NIL singleton for static builds, we force # this into Python here. PMT_NIL = get_PMT_NIL() +PMT_T = get_PMT_T() +PMT_F = get_PMT_F() +PMT_EOF = get_PMT_EOF() from pmt_to_python import pmt_to_python as to_python from pmt_to_python import python_to_pmt as to_pmt -- cgit v1.2.3