diff options
author | Ethan Furman <ethan@stoneleaf.us> | 2016-11-21 16:29:31 (GMT) |
---|---|---|
committer | Ethan Furman <ethan@stoneleaf.us> | 2016-11-21 16:29:31 (GMT) |
commit | c88c80b716cecd0aea8467a41668dced9cafe3d5 (patch) | |
tree | 70b8bc2673bf39ce576e3529ca511c79441c3979 /Doc | |
parent | 00eacac96bb78e49e96a4477eb14b65619e3d041 (diff) | |
download | cpython-c88c80b716cecd0aea8467a41668dced9cafe3d5.zip cpython-c88c80b716cecd0aea8467a41668dced9cafe3d5.tar.gz cpython-c88c80b716cecd0aea8467a41668dced9cafe3d5.tar.bz2 |
closes issue28082: doc update and NEWS entry
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/re.rst | 3 |
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) |