From 221f88d1f3f67640e72912ad8473782360b0e306 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 26 Jan 2017 23:45:51 +1100 Subject: tests/extmod: Add test for ure debug printing when compiling a regex. --- tests/extmod/ure_debug.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tests/extmod/ure_debug.py (limited to 'tests/extmod/ure_debug.py') diff --git a/tests/extmod/ure_debug.py b/tests/extmod/ure_debug.py new file mode 100644 index 0000000000..303e1789c0 --- /dev/null +++ b/tests/extmod/ure_debug.py @@ -0,0 +1,3 @@ +# test printing debugging info when compiling +import ure +ure.compile('^a|b[0-9]\w$', ure.DEBUG) -- cgit v1.2.3