summaryrefslogtreecommitdiffstats
path: root/modules/regex/config.py
Commit message (Collapse)AuthorAgeFilesLines
* pcre2: Update to upstream version 10.42 (take two)Rémi Verschelde2023-06-121-1/+1
| | | | | | | Changelog: https://github.com/PCRE2Project/pcre2/blob/pcre2-10.42/ChangeLog This fixes support for RISC-V architectures in the sljit library, so we enable the module's compilation for `rv64` too.
* Revert "pcre2: Update to upstream version 10.42"Rémi Verschelde2022-12-231-1/+1
| | | | | | This reverts commit 62c3e4ab9c87689ff0b7d27350bde176981daf1b. Needs more work, see comments about `_regex_free` errors in #70447.
* pcre2: Update to upstream version 10.42Rémi Verschelde2022-12-221-1/+1
| | | | | | | Changelog: https://github.com/PCRE2Project/pcre2/blob/pcre2-10.42/ChangeLog This should also fix support for RISC-V architectures, at least in the sljit library.
* Add support for the RISC-V architectureAaron Franke2021-10-221-1/+1
| | | | Supports RV64GC (RISC-V 64-bit with general-purpose and compressed-instruction extensions)
* SCons: Format buildsystem files with psf/blackRémi Verschelde2020-03-301-0/+3
| | | | | | | | | | | | | | | | | | | | | Configured for a max line length of 120 characters. psf/black is very opinionated and purposely doesn't leave much room for configuration. The output is mostly OK so that should be fine for us, but some things worth noting: - Manually wrapped strings will be reflowed, so by using a line length of 120 for the sake of preserving readability for our long command calls, it also means that some manually wrapped strings are back on the same line and should be manually merged again. - Code generators using string concatenation extensively look awful, since black puts each operand on a single line. We need to refactor these generators to use more pythonic string formatting, for which many options are available (`%`, `format` or f-strings). - CI checks and a pre-commit hook will be added to ensure that future buildsystem changes are well-formatted.
* SCons: Pass env to modules can_build methodRémi Verschelde2018-05-301-1/+1
| | | | | | This allows to disable modules based on the environment, in particular `env[tools]` which tells us if we are building the editor or not.
* doc: Make all module docs self-containedRémi Verschelde2017-11-151-4/+9
|
* 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.