summaryrefslogtreecommitdiff
path: root/gnuradio-runtime/python/pmt/pmt_to_python.py
Commit message (Collapse)AuthorAgeFilesLines
* runtime: pep8 formattingJosh Morman2021-11-241-21/+41
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-1/+0
| | | | | | | | | | | | | | | | All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
* pmt: add pybind11 bindingsJosh Morman2020-06-041-2/+2
|
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* gr-runtime: Improve exception handling in ControlPort MonitorBrennan Ashton2018-11-151-1/+2
|
* Merge branch 'python3_fix' into nextAndrej Rode2018-06-241-14/+15
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Manual merge conflict resolution has been applied to following conflicts: * Typos: * gnuradio-runtime/python/gnuradio/ctrlport/GrDataPlotter.py * gr-blocks/python/blocks/qa_wavfile.py * gr-filter/examples/gr_filtdes_api.py * grc/blocks/parameter.xml * gr-uhd/python/uhd/__init__.py * ValueError -> RuntimeError: * gr-blocks/python/blocks/qa_hier_block2.py * relative Imports & other Py3k: * gr-digital/python/digital/psk_constellations.py * gr-digital/python/digital/qam_constellations.py * gr-digital/python/digital/test_soft_decisions.py * gr-digital/python/digital/gfsk.py * SequenceCompleter: * gr-utils/python/modtool/modtool_add.py * gr-utils/python/modtool/modtool_rename.py * gr-utils/python/modtool/modtool_rm.py * Updated API on next: * gr-blocks/grc/blocks_file_source.xml * gr-blocks/python/blocks/qa_file_source_sink.py * gr-qtgui/grc/qtgui_time_sink_x.xml * GRC Py3k Updates: * grc/core/Block.py * grc/core/Constants.py * grc/core/Platform.py * grc/core/utils/odict.py * grc/gui/Actions.py * grc/gui/Block.py * grc/gui/Executor.py * grc/gui/Port.py
| * python3: update non-GRC components to use python2 or python3Douglas Anderson2017-02-261-14/+15
| |
* | Comment typo fixing.luz.paz2018-02-031-1/+1
|/ | | | Luzpaz went ahead and found typos using `codespell -q 3`.
* runtime: fix numpy warningBob Iannucci2017-01-121-1/+1
| | | | The == operator on Numpy arrays is being redefined to work elementwise. Changing the == to 'is' should fix the problem.
* runtime: mods for pmt's NIL.Tom Rondeau2014-06-281-4/+7
|
* pmt: support conversion of basic pmt pairs to pythonTim O'Shea2014-05-141-1/+6
|
* renamed and cleaned up a bitMarcus Müller2014-04-071-4/+3
|
* pmt_to_python: numpy_to_uvector and reverse works, QA addedMarcus Müller2014-04-071-25/+29
|
* set numpy_mappings -> dict, to fix py2.6 incompatibilityMarcus Müller2014-04-051-22/+23
|
* fix numpy to pmt uvector conversionTim O'Shea2014-03-261-8/+33
|
* pmt: adds ability to handle unicode input with pmt_to_python.Sylvain Munaut2013-12-191-0/+1
|
* gruel: moved gruel into subdirs of gnuradio-runtime.Tom Rondeau2013-04-011-0/+97
PMTs are handled slightly different and are installed into their own module and include dir.