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
e5df857c
Commit
e5df857c
authored
Mar 21, 2007
by
Žiga Seilnacht
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug #1675967: re patterns pickled with older Python versions can
now be unpickled. (backport form rev. 54492)
parent
7ed0a658
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
0 deletions
+15
-0
Lib/sre.py
Lib/sre.py
+3
-0
Lib/test/test_re.py
Lib/test/test_re.py
+9
-0
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/sre.py
View file @
e5df857c
...
...
@@ -8,3 +8,6 @@ warnings.warn("The sre module is deprecated, please import re.",
from
re
import
*
from
re
import
__all__
# old pickles expect the _compile() reconstructor in this module
from
re
import
_compile
Lib/test/test_re.py
View file @
e5df857c
...
...
@@ -414,6 +414,15 @@ class ReTests(unittest.TestCase):
self.pickle_test(pickle)
import cPickle
self.pickle_test(cPickle)
# old pickles expect the _compile() reconstructor in sre module
import warnings
original_filters = warnings.filters[:]
try:
warnings.filterwarnings("ignore", "The sre module is deprecated",
DeprecationWarning)
from sre import _compile
finally:
warnings.filters = original_filters
def pickle_test(self, pickle):
oldpat = re.compile('
a
(
?
:
b
|
(
c
|
e
){
1
,
2
}
?
|
d
)
+
?
(.)
')
...
...
Misc/NEWS
View file @
e5df857c
...
...
@@ -217,6 +217,9 @@ Extension Modules
Library
-------
- Bug #1675967: re patterns pickled with Python 2.4 and earlier can
now be unpickled with Python 2.5.
- Bug #1684254: webbrowser now uses shlex to split any command lines
given to get(). It also detects when you use '
&
' as the last argument
and creates a BackgroundBrowser then.
...
...
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