diff options
author | Tom Rondeau <tom@trondeau.com> | 2015-02-26 14:35:26 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2015-02-26 14:35:26 -0500 |
commit | e5646398bd8d05f6bbffd0f18710f5d8e53df4b4 (patch) | |
tree | 117a026783f77905f2989b292e4dc2f6001d45a0 /gnuradio-runtime/python/pmt/__init__.py | |
parent | 5fd3e3f85fbf797183e9d506aa43397ca91085cd (diff) |
pmt: moves the rest of the PMT constants from static globals to using get_ functions.
Diffstat (limited to 'gnuradio-runtime/python/pmt/__init__.py')
-rw-r--r-- | gnuradio-runtime/python/pmt/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
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 |