summaryrefslogtreecommitdiffstats
path: root/Doc/library/re.rst
diff options
context:
space:
mode:
authorEthan Furman <ethan@stoneleaf.us>2016-11-21 16:29:31 (GMT)
committerEthan Furman <ethan@stoneleaf.us>2016-11-21 16:29:31 (GMT)
commitc88c80b716cecd0aea8467a41668dced9cafe3d5 (patch)
tree70b8bc2673bf39ce576e3529ca511c79441c3979 /Doc/library/re.rst
parent00eacac96bb78e49e96a4477eb14b65619e3d041 (diff)
downloadcpython-c88c80b716cecd0aea8467a41668dced9cafe3d5.zip
cpython-c88c80b716cecd0aea8467a41668dced9cafe3d5.tar.gz
cpython-c88c80b716cecd0aea8467a41668dced9cafe3d5.tar.bz2
closes issue28082: doc update and NEWS entry
Diffstat (limited to 'Doc/library/re.rst')
-rw-r--r--Doc/library/re.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index c9f2263..218bbf8 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -478,6 +478,9 @@ functions are simplified versions of the full featured methods for compiled
regular expressions. Most non-trivial applications always use the compiled
form.
+.. versionchanged:: 3.6
+ Flag constants are now instances of :class:`RegexFlag`, which is a subclass of
+ :class:`enum.IntFlag`.
.. function:: compile(pattern, flags=0)