Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
de7b064c
Commit
de7b064c
authored
Sep 20, 2013
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0
binaries.
parent
360a59e2
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
3 deletions
+8
-3
Lib/sre_compile.py
Lib/sre_compile.py
+0
-1
Lib/sre_constants.py
Lib/sre_constants.py
+5
-1
Lib/sre_parse.py
Lib/sre_parse.py
+0
-1
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/sre_compile.py
View file @
de7b064c
...
...
@@ -13,7 +13,6 @@
import
_sre
,
sys
import
sre_parse
from
sre_constants
import
*
from
_sre
import
MAXREPEAT
assert
_sre
.
MAGIC
==
MAGIC
,
"SRE module mismatch"
...
...
Lib/sre_constants.py
View file @
de7b064c
...
...
@@ -15,7 +15,11 @@
MAGIC
=
20031017
from
_sre
import
MAXREPEAT
try
:
from
_sre
import
MAXREPEAT
except
ImportError
:
import
_sre
MAXREPEAT
=
_sre
.
MAXREPEAT
=
65535
# SRE standard exception (access as sre.error)
# should this really be here?
...
...
Lib/sre_parse.py
View file @
de7b064c
...
...
@@ -15,7 +15,6 @@
import
sys
from
sre_constants
import
*
from
_sre
import
MAXREPEAT
SPECIAL_CHARS
=
".
\
\
[{()*+?^$|"
REPEAT_CHARS
=
"*+?{"
...
...
Misc/NEWS
View file @
de7b064c
...
...
@@ -68,6 +68,9 @@ Core and Builtins
Library
-------
- Issue #18050: Fixed an incompatibility of the re module with Python 3.3.0
binaries.
- Issue #19037: The mailbox module now makes all changes to maildir files
before moving them into place, to avoid race conditions with other programs
that may be accessing the maildir directory.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment