summaryrefslogtreecommitdiffstats
path: root/modules/regex/config.py
Commit message (Collapse)AuthorAgeFilesLines
* style: Fix PEP8 blank lines issues in Python filesRémi Verschelde2016-11-011-1/+2
| | | | | | | | | | | Done with `autopep8 --select=E3,W3`, fixes: - E301 - Add missing blank line. - E302 - Add missing 2 blank lines. - E303 - Remove extra blank lines. - E304 - Remove blank line following function decorator. - E309 - Add missing blank line. - W391 - Remove trailing blank lines.
* RegEx re-implemented as a moduleZher Huei Lee2016-10-271-0/+8
Re-wrote nrex as a module using godot-specific parts and new features: * Added string substitutions. * Named groups are now supported. * Removed use of mutable variables in RegEx. RegExMatch is returned instead.