Issue #19928: Fix test on Windows

This commit is contained in:
Zachary Ware 2013-12-10 14:14:28 -06:00
parent 1f70221b86
commit 227c01a194
1 changed files with 2 additions and 2 deletions

View File

@ -185,8 +185,8 @@ class ReprTests(unittest.TestCase):
return x
return inner
x = get_cell().__closure__[0]
self.assertRegexpMatches(repr(x), r'<cell at 0x[0-9a-f]+: '
r'int object at 0x[0-9a-f]+>')
self.assertRegexpMatches(repr(x), r'<cell at 0x[0-9A-Fa-f]+: '
r'int object at 0x[0-9A-Fa-f]+>')
self.assertRegexpMatches(r(x), r'<cell at.*\.\.\..*>')
def test_descriptors(self):