summaryrefslogtreecommitdiff
path: root/grc/gui/Executor.py
Commit message (Collapse)AuthorAgeFilesLines
* cmake: replace deprecated distutilsVolker Schroer2021-12-201-1/+1
| | | | | | | | | | | * gnuradio: replace deprecated distutils Check if python packaging is available Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com> * Add packaging requirement Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com>
* grc: pep8 formattingJosh Morman2021-11-241-1/+2
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* grc: remove gnome-terminal deprecation warningmormj2020-12-171-1/+4
| | | | | | | | | | | When running a "No GUI" flowgraph from GRC, it gives the following deprecation warning: Option “-e” is deprecated and might be removed in a later version of gnome-terminal. Use “-- ” to terminate the options and put the command line to execute after it. This follows the suggested fix to update the deprecation Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* grc: fix pylint C0303: Trailing whitespaceClayton Smith2020-10-201-1/+1
|
* 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
* grc: use cmake --build instead of makejapm482020-04-261-1/+4
| | | | | This allows the use of other toolchains (ninja, MSVC, etc.). Also, use all available CPU cores (equivalent of "make -j$(nproc)").
* grc: start flowgraph process in its folderjapm482020-04-261-3/+7
| | | | This allows the use of predictable relative paths.
* Update license header to SPDX formatdevnulling2020-01-271-13/+2
|
* Added C++ support to gr-analog, gr-blocks and grcHåkon Vågsether2018-12-181-50/+7
|
* Add C++ generationHåkon Vågsether2018-11-231-1/+73
|
* grc: Fix flow graph stdout and clean up process on terminationBrennan Ashton2018-11-121-4/+8
|
* GRC: fix failing thread runJohannes Demel2018-11-121-1/+4
| | | | In Py3k a string decode might trigger an error because it is already a unicode string. This is not the case in Py2k land. Thus, add a check.
* Decode stdout as utf-8 for the fg execution consoleVolker Schroer2018-08-241-1/+1
| | | | | | | | | | | | | | If the executed script sends some ( error ) messages you get a lot of error messages like Traceback (most recent call last): File "/usr/local/gnuradio/lib/python3.6/dist-packages/gnuradio/grc/core/Messages.py", line 117, in send_verbose_exec send(verbose) File "/usr/local/gnuradio/lib/python3.6/dist-packages/gnuradio/grc/core/Messages.py", line 52, in send messenger(_indent + message) TypeError: must be str, not bytes But you don't find out the reason of this error. The return type of os.read seems to have changed between python 2.7 and python 3. The decode function fixes this issue and you get valuable messages.
* Merge branch 'python3_fix' into nextAndrej Rode2018-06-241-13/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * grc: gtk minor fixesSebastian Koslowski2017-03-091-1/+1
| |
| * Merge remote-tracking branch 'upstream/next' into gtk3Sebastian Koslowski2016-11-171-30/+5
| |\
| * | grc: gtk3: Renamed the ActionHandler to ApplicationSeth Hitefield2016-09-231-3/+0
| | |
| * | grc: py3k compat using python-modernizeSebastian Koslowski2016-06-091-0/+1
| | |
| * | grc: gtk3: remove some deprecated warningsSebastian Koslowski2016-06-011-3/+3
| | |
| * | grc-refactor: replace some unnecessary gettersSebastian Koslowski2016-06-011-4/+3
| | |
| * | grc: Main window opens with pygobject and gtk3. Still throws tons of errors.Seth Hitefield2016-05-241-4/+5
| | |
* | | Merge branch 'master' into nextMartin Braun2018-02-031-1/+1
|\ \ \ | |_|/ |/| |
| * | Comment typo fixing.luz.paz2018-02-031-1/+1
| | | | | | | | | | | | Luzpaz went ahead and found typos using `codespell -q 3`.
| * | Backport GRC Python code for Python-2.6.6+Ben Hilburn2016-10-171-1/+1
| |/
* / grc: move run command getter to coreSebastian Koslowski2016-09-231-33/+8
|/
* grc: fix flow graph execution (amends ActionHandler refactoring)Sebastian Koslowski2016-05-231-18/+16
|
* grc-refactor: remove (hopefully) all deps to GR in core/ and gui/Sebastian Koslowski2016-04-051-2/+2
|
* grc-refactor: move gui prefs to guiSebastian Koslowski2016-04-051-0/+123