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
cc50ba26
Commit
cc50ba26
authored
Mar 13, 2012
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Plain Diff
#14179: merge with 3.2.
parents
a8ec5ea9
df723e1e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
Lib/test/test_re.py
Lib/test/test_re.py
+10
-0
Misc/ACKS
Misc/ACKS
+1
-0
No files found.
Lib/test/test_re.py
View file @
cc50ba26
...
...
@@ -825,6 +825,16 @@ class ReTests(unittest.TestCase):
self.assertIsNotNone(re.search("
123.
*-
", '123
\
U0010ffff
-'))
self.assertIsNotNone(re.search("
123.
*-
", '123
\
xe9
\
u20ac
\
U0010ffff
-'))
def test_compile(self):
# Test return value when given string and pattern as parameter
pattern = re.compile('random pattern')
self.assertIsInstance(pattern, re._pattern_type)
same_pattern = re.compile(pattern)
self.assertIsInstance(same_pattern, re._pattern_type)
self.assertIs(same_pattern, pattern)
# Test behaviour when not given a string or pattern as parameter
self.assertRaises(TypeError, re.compile, 0)
def run_re_tests():
from test.re_tests import tests, SUCCEED, FAIL, SYNTAX_ERROR
if verbose:
...
...
Misc/ACKS
View file @
cc50ba26
...
...
@@ -687,6 +687,7 @@ Andrii V. Mishkovskyi
Dom Mitchell
Dustin J. Mitchell
Zubin Mithra
Florian Mladitsch
Doug Moen
The Dragon De Monsyne
Skip Montanaro
...
...
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