Issue #19928: Fix test on Windows
This commit is contained in:
parent
1f70221b86
commit
227c01a194
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue