Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | python: Remove unnecessary 'from __future__ import' | Oleksandr Kravchuk | 2020-08-03 | 1 | -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 | ||||
* | Update license header to SPDX format | devnulling | 2020-01-27 | 1 | -13/+2 |
| | |||||
* | grc: disable auto-conversion and implement json cache | Sebastian Koslowski | 2017-11-08 | 1 | -2/+2 |
| | |||||
* | grc: added yaml/mako support | Sebastian Koslowski | 2017-06-29 | 1 | -3/+11 |
| | | | | Includes basic converter from XML/Cheetah to YAML/Mako based block format. | ||||
* | grc: refactor: Cleaned up imports | Seth Hitefield | 2016-09-22 | 1 | -1/+0 |
| | |||||
* | grc: refactor: move drawables in subpackage | Sebastian Koslowski | 2016-09-13 | 1 | -12/+8 |
| | |||||
* | grc: refactor: Port, Param, Options init clean-up | Sebastian Koslowski | 2016-07-29 | 1 | -3/+5 |
| | |||||
* | grc: dynamic super-classing proof-of-concept =) | Sebastian Koslowski | 2016-07-29 | 1 | -1/+2 |
| | |||||
* | grc: refactor: minor clean-up and fixes | Sebastian Koslowski | 2016-07-14 | 1 | -17/+15 |
| | |||||
* | grc: py3k compat using python-modernize | Sebastian Koslowski | 2016-06-09 | 1 | -1/+3 |
| | |||||
* | grc-refactor: remove (hopefully) all deps to GR in core/ and gui/ | Sebastian Koslowski | 2016-04-05 | 1 | -12/+15 |
| | |||||
* | grc-refactor: move gui prefs to gui | Sebastian Koslowski | 2016-04-05 | 1 | -4/+8 |
| | |||||
* | grc-refactor: Platform.py | Sebastian Koslowski | 2016-02-17 | 1 | -1/+2 |
| | |||||
* | grc-refactor: rename grc/model/ to grc/core/ | Sebastian Koslowski | 2016-02-17 | 1 | -2/+2 |
| | |||||
* | grc-refactor: clean-up grc directory | Sebastian Koslowski | 2016-02-17 | 1 | -2/+2 |
| | |||||
* | grc-refactor: move grc.base to grc.python.base | Sebastian Koslowski | 2016-02-17 | 1 | -5/+40 |
| | |||||
* | grc: add user settings for canvas default size and canvas font size (+ ↵ | Sebastian Koslowski | 2015-07-17 | 1 | -1/+1 |
| | | | | clean-ups) | ||||
* | grc: nicer output of blocks paths and prefs file | Sebastian Koslowski | 2014-04-09 | 1 | -1/+6 |
| | |||||
* | grc: Fix whitespace issue in grc to use proper spaces | Tim O'Shea | 2013-07-09 | 1 | -1/+1 |
| | | | | Remove all \t's to match the rest of GNU Radio | ||||
* | standardized the Element inheritance __init__ usage in gui | Josh Blum | 2009-09-05 | 1 | -1/+2 |
| | |||||
* | Switched the python classes to inherit from the base and gui classes. | Josh Blum | 2009-08-30 | 1 | -27/+2 |
| | | | | | Use only **kwargs so all contructor parameters must be passed with keys. Moved gui input forms classes from base to gui param module. | ||||
* | Removed Source and Sink classes as Port subclasses. | Josh Blum | 2009-08-17 | 1 | -3/+2 |
| | | | | A port can be a source or a sink based on the dir parameter. | ||||
* | Merging r11186:11273 from grc branch. | jblum | 2009-06-23 | 1 | -0/+48 |
Fixes, features, and reorganization for grc. Minor fixes and features for wxgui forms. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11274 221aa14e-8319-0410-a670-987f0aec2ac5 |