mirror of
https://github.com/python/cpython.git
synced 2025-07-12 05:45:15 +00:00
bpo-33224: PEP 479 fix for difflib.mdiff() (GH-6381)
This commit is contained in:
parent
7286dbd8b2
commit
01b731fc2b
3 changed files with 22 additions and 8 deletions
|
@ -93,6 +93,14 @@ class TestSFbugs(unittest.TestCase):
|
|||
self.assertEqual("+ \t\tI am a bug", diff[2])
|
||||
self.assertEqual("? +\n", diff[3])
|
||||
|
||||
def test_mdiff_catch_stop_iteration(self):
|
||||
# Issue #33224
|
||||
self.assertEqual(
|
||||
list(difflib._mdiff(["2"], ["3"], 1)),
|
||||
[((1, '\x00-2\x01'), (1, '\x00+3\x01'), True)],
|
||||
)
|
||||
|
||||
|
||||
patch914575_from1 = """
|
||||
1. Beautiful is beTTer than ugly.
|
||||
2. Explicit is better than implicit.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue