summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorEthan Furman <ethan@stoneleaf.us>2016-11-21 16:30:55 (GMT)
committerEthan Furman <ethan@stoneleaf.us>2016-11-21 16:30:55 (GMT)
commitb779f3171a8bd212ba56902a747d3e29dcd97726 (patch)
tree9847f38f728e85388530f8c8f77febccc880ea2b /Doc
parent92c50eee5273e75ef186ce1ffb750d7288a80767 (diff)
parentc88c80b716cecd0aea8467a41668dced9cafe3d5 (diff)
downloadcpython-b779f3171a8bd212ba56902a747d3e29dcd97726.zip
cpython-b779f3171a8bd212ba56902a747d3e29dcd97726.tar.gz
cpython-b779f3171a8bd212ba56902a747d3e29dcd97726.tar.bz2
update news and re doc
Diffstat (limited to 'Doc')
-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)