mirror of
https://github.com/python/cpython.git
synced 2025-09-25 01:43:11 +00:00
Fix test splitting in previous commit.
This commit is contained in:
parent
735f36edb8
commit
74635c9177
1 changed files with 2 additions and 4 deletions
|
@ -827,6 +827,8 @@ class ReTests(unittest.TestCase):
|
||||||
s = 'a' * size
|
s = 'a' * size
|
||||||
m = re.search('$', s)
|
m = re.search('$', s)
|
||||||
self.assertIsNotNone(m)
|
self.assertIsNotNone(m)
|
||||||
|
self.assertEqual(m.start(), size)
|
||||||
|
self.assertEqual(m.end(), size)
|
||||||
|
|
||||||
# The huge memuse is because of re.sub() using a list and a join()
|
# The huge memuse is because of re.sub() using a list and a join()
|
||||||
# to create the replacement result.
|
# to create the replacement result.
|
||||||
|
@ -834,10 +836,6 @@ class ReTests(unittest.TestCase):
|
||||||
def test_large_subn(self, size):
|
def test_large_subn(self, size):
|
||||||
# Issue #10182: indices were 32-bit-truncated.
|
# Issue #10182: indices were 32-bit-truncated.
|
||||||
s = 'a' * size
|
s = 'a' * size
|
||||||
m = re.search('$', s)
|
|
||||||
self.assertIsNotNone(m)
|
|
||||||
self.assertEqual(m.start(), size)
|
|
||||||
self.assertEqual(m.end(), size)
|
|
||||||
r, n = re.subn('', '', s)
|
r, n = re.subn('', '', s)
|
||||||
self.assertEqual(r, s)
|
self.assertEqual(r, s)
|
||||||
self.assertEqual(n, size + 1)
|
self.assertEqual(n, size + 1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue