summaryrefslogtreecommitdiffstats
path: root/modules/regex/config.py
diff options
context:
space:
mode:
authorZher Huei Lee <lee.zh.92@gmail.com>2016-10-23 01:22:48 +0100
committerZher Huei Lee <lee.zh.92@gmail.com>2016-10-27 10:27:40 +0100
commit439d43932133d32dcabd482f11842072d52b41e1 (patch)
treea3df1a0366b25a845d337836b3e163a6ffc72fec /modules/regex/config.py
parent470ead74dbc3d6ea7133ab90c0d09ed637e7a5f5 (diff)
downloadredot-engine-439d43932133d32dcabd482f11842072d52b41e1.tar.gz
RegEx re-implemented as a module
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.
Diffstat (limited to 'modules/regex/config.py')
-rw-r--r--modules/regex/config.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/modules/regex/config.py b/modules/regex/config.py
new file mode 100644
index 0000000000..667b5d8ba6
--- /dev/null
+++ b/modules/regex/config.py
@@ -0,0 +1,8 @@
+#!/usr/bin/env python
+
+def can_build(platform):
+ return True
+
+def configure(env):
+ pass
+