summaryrefslogtreecommitdiff
path: root/gr-fec/python/fec/fec_test.py
Commit message (Collapse)AuthorAgeFilesLines
* fec: pep8 formattingJosh Morman2021-11-241-5/+5
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-3/+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
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* python: replace unfunctional old_div with functional codeAndrej Rode2018-08-171-1/+1
| | | | | | | | | | 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
* python3: update non-GRC components to use python2 or python3Douglas Anderson2017-02-261-4/+7
|
* fec: wip: cleaning up tagged decoder, rep code.Tom Rondeau2014-05-171-1/+7
|
* fec: wip: mods for ber plotting. Now adding theoretical BPSK in AWGN curve.Tom Rondeau2014-05-171-8/+9
|
* fec: wip: adding a dummy encoder/decoder and repetition code to exercise the ↵Tom Rondeau2014-05-171-24/+33
| | | | API.
* fec: Merging fecapi with support for CC code.Tom Rondeau2014-05-171-0/+107
Original code taken from next branch of Nick McCarthy's fecapi: https://github.com/namccart/fecapi.git Needs: examples, documentation, other tools.