summaryrefslogtreecommitdiff
path: root/grc/gui/external_editor.py
Commit message (Collapse)AuthorAgeFilesLines
* grc: fix pylint C0330: wrong hanging indentationClayton Smith2020-10-201-1/+1
|
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-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 formatdevnulling2020-01-271-12/+1
|
* Merge branch 'gtk3' into python3Sebastian Koslowski2017-03-091-5/+4
|\
| * grc: py3k compat using python-modernizeSebastian Koslowski2016-06-091-2/+4
| |
* | grc: fix file monitor on windows (#1169)Sebastian Koslowski2017-01-171-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 blocksSeth Hitefield2015-11-241-12/+8
|
* grc: open and update params from external editorSebastian Koslowski2015-11-111-0/+93