| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: Josh Morman <jmorman@gnuradio.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
a previous change to py3k introduced synactically incorrect
`old_div` function calls. A replacement with `//` and `/` where applicable is
more appropriate.
Eventually `from __future__ import division` needs to be added as well to have
the "real" division also for integer values in python
closes #1902
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
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
|
| | |
|
|\ \
| |/
|/| |
|
| |
| |
| |
| | |
Luzpaz went ahead and found typos using `codespell -q 3`.
|
| |
| |
| |
| |
| |
| | |
* This also removes blks2 from gr-digital; however,
the old style OFDM code still uses this and are
broken until they are removed.
|
|\| |
|
| | |
|
|/
|
|
|
|
| |
CPack is not used, unmaintaned, and broken.
This does not eliminate any MSVC build functionality.
|
| |
|
|
|
|
| |
Also added locks in the set_ methods
|
|
|
|
| |
Removed weird pyhton examples and made them grc files.
|
|
|
|
| |
Added FSM functionality + minor fixes
|
| |
|
|
|
|
| |
'/'.
|
|
|
|
|
|
| |
+ Workaround for the path problem with cmake to use templates for install
+ GRC blocks now check if FSM_Args are strings and if the file exists
+ Changed example generation with CMake
|
|
|
|
|
|
| |
+ Fixed paths to match GNURADIO-3.7.x conventions
+ Fixed errors with dimensionality
+ Changed to QT-widgets
|
| |
|
| |
|
| |
|
|
|
|
| |
docs: also updating Doxygen category for all new/moved blocks.
|
|
|
|
| |
This makes gr-wxgui more like a normal component that generates a libgnuradio-wxgui.so file.
|
| |
|
|
|
|
| |
copy, head, skiphead, vector_map, and annotator blocks to use gr-blocks.
|
| |
|
|
|
|
| |
delay, rms, packed_to_unpacked, unpacked_to_packed.
|
|
|
|
|
|
| |
Conflicts:
gr-trellis/CMakeLists.txt
gr-trellis/python/CMakeLists.txt
|
|
|