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
7f7f3d78
Commit
7f7f3d78
authored
Dec 10, 2013
by
Zachary Ware
Browse files
Options
Browse Files
Download
Plain Diff
Issue #19928: Fix test on Windows
parents
20719ace
ea6854a9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Lib/test/test_reprlib.py
Lib/test/test_reprlib.py
+2
-2
No files found.
Lib/test/test_reprlib.py
View file @
7f7f3d78
...
...
@@ -173,8 +173,8 @@ class ReprTests(unittest.TestCase):
return
x
return
inner
x
=
get_cell
().
__closure__
[
0
]
self
.
assertRegex
(
repr
(
x
),
r'<cell at 0x[0-9a-f]+: int object at 0x[0-9
a-f]+>'
)
self
.
assertRegex
(
repr
(
x
),
r'<cell at 0x[0-9A-Fa-f]+: '
r'int object at 0x[0-9A-F
a-f]+>'
)
self
.
assertRegex
(
r
(
x
),
r'<cell at 0x.*\
.
\.\
..*>
')
def test_descriptors(self):
...
...
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