summaryrefslogtreecommitdiff
path: root/gr-audio/examples/python/dial_tone_daemon.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove gru.daemonize and dial_tone_daemon exampleClayton Smith2020-10-301-46/+0
| | | | | | | These were added in GNU Radio 3.1.3, but a Google search finds no mention of gru.daemonize outside of the changelog. Modern Python programs could use the python-daemon library, which implements the daemon specification of PEP 3143.
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-2/+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
|
* python3: update non-GRC components to use python2 or python3Douglas Anderson2017-02-261-1/+3
|
* examples: replace OptionParser by ArgumentParserJiří Pinkava2016-09-201-13/+9
|
* analog: removing gr-analog as a required dependency when not actually necessary.Tom Rondeau2012-11-061-1/+6
| | | | Examples that use gr-analog test for it first.
* analog: Removing reference to gr.sig_source_X and gr.noise_source_X where ↵Tom Rondeau2012-11-061-8/+8
| | | | | | | | possible. Passing make and make test. Examples and apps need testing. gr-filter relies on sig_source and noise_source, so can't remove them from core.
* Removed whitespace and added dtools/bin/remove-whitespace as a tool to do ↵Tom Rondeau2012-04-131-5/+5
| | | | | | this in the future. The sed script was provided by Moritz Fischer.
* gnuradio-examples, gr-audio: moved audio Python and C++ examples into gr-audioJohnathan Corgan2011-07-041-0/+57
This begins a transition of examples from a separate gnuradio-examples component into an examples directory with the component they go with. In this commit: gnuradio-examples/c++/audio/ => gr-audio/examples/c++ gnuradio-examples/python/audio => gr-audio/examples/python The system installation directory remains $PREFIX/share/gnuradio/examples/audio