We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa2885e commit 6195ad7Copy full SHA for 6195ad7
Lib/re/__init__.py
@@ -86,7 +86,7 @@
86
87
This module exports the following functions:
88
prefixmatch Match a regular expression pattern to the beginning of a string.
89
- match The old name of prefixmatch. Prefer prefixmatch in 3.11+ code.
+ match The old name of prefixmatch. Prefer prefixmatch in 3.12+ code.
90
fullmatch Match a regular expression pattern to all of a string.
91
search Search a string for the presence of a pattern.
92
sub Substitute occurrences of a pattern found in a string.
@@ -137,7 +137,7 @@
137
"UNICODE", "NOFLAG", "RegexFlag",
138
]
139
140
-__version__ = "3.11.0"
+__version__ = "3.12.0"
141
142
@enum.global_enum
143
@enum._simple_enum(enum.IntFlag, boundary=enum.KEEP)
0 commit comments