Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | grc: fix pylint C0330: wrong hanging indentation | Clayton Smith | 2020-10-20 | 1 | -1/+1 |
| | |||||
* | 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 | -12/+1 |
| | |||||
* | Merge branch 'gtk3' into python3 | Sebastian Koslowski | 2017-03-09 | 1 | -5/+4 |
|\ | |||||
| * | grc: py3k compat using python-modernize | Sebastian Koslowski | 2016-06-09 | 1 | -2/+4 |
| | | |||||
* | | grc: fix file monitor on windows (#1169) | Sebastian Koslowski | 2017-01-17 | 1 | -15/+13 |
|/ | | | | I seems tempfile.NamedTemporaryFile() can not be used under windows, as keeping the fp around locks the file for writing. So, we close the the handle after the initial write and delete the file manually. | ||||
* | grc: Added option to use the default editor when opening embedded python blocks | Seth Hitefield | 2015-11-24 | 1 | -12/+8 |
| | |||||
* | grc: open and update params from external editor | Sebastian Koslowski | 2015-11-11 | 1 | -0/+93 |