From ad5a6f591796c2dec6e91e9da147eaa7e9ee72a7 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 4 Nov 2017 00:26:31 +0200 Subject: [PATCH] docs/ure: Add flags arg to ure.compile(), mention that ure.DEBUG is optional. --- docs/library/ure.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/library/ure.rst b/docs/library/ure.rst index ebae1db5f1..9a5a87fb65 100644 --- a/docs/library/ure.rst +++ b/docs/library/ure.rst @@ -47,7 +47,7 @@ etc. are not supported. Functions --------- -.. function:: compile(regex_str) +.. function:: compile(regex_str, [flags]) Compile regular expression, return `regex ` object. @@ -65,6 +65,7 @@ Functions .. data:: DEBUG Flag value, display debug information about compiled expression. + (Availability depends on `MicroPython port`.) .. _regex: