diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-10-15 04:43:13 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-10-15 04:44:07 +0300 |
commit | 95908b0f50e26fe2c90687966b60a0cf195f71de (patch) | |
tree | 4bdbe99b47accb07ae45e50a8944be6a67679313 /extmod/modure.c | |
parent | d27c0bb3aa3e571a9efc43fa54c16b85e91a7b03 (diff) | |
download | micropython-95908b0f50e26fe2c90687966b60a0cf195f71de.tar.gz micropython-95908b0f50e26fe2c90687966b60a0cf195f71de.zip |
modure: Update to re1.5 v0.6, support for char sets/classes ([a-c]).
Diffstat (limited to 'extmod/modure.c')
-rw-r--r-- | extmod/modure.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extmod/modure.c b/extmod/modure.c index 7acc045e70..ae47a2129a 100644 --- a/extmod/modure.c +++ b/extmod/modure.c @@ -38,7 +38,7 @@ #if MICROPY_PY_URE -#include "re1.5/regexp.h" +#include "re1.5/re1.5.h" #define FLAG_DEBUG 0x1000 @@ -245,5 +245,6 @@ const mp_obj_module_t mp_module_ure = { #include "re1.5/compilecode.c" #include "re1.5/dumpcode.c" #include "re1.5/recursiveloop.c" +#include "re1.5/charclass.c" #endif //MICROPY_PY_URE |