Issue #19928: Fix test on Windows

This commit is contained in:
Zachary Ware 2013-12-10 14:18:30 -06:00
commit 7f7f3d7879
1 changed files with 2 additions and 2 deletions

View File

@ -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-9a-f]+>')
self.assertRegex(repr(x), r'<cell at 0x[0-9A-Fa-f]+: '
r'int object at 0x[0-9A-Fa-f]+>')
self.assertRegex(r(x), r'<cell at 0x.*\.\.\..*>')
def test_descriptors(self):