This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Boris Yang
Recipients
Date 2018-11-21.07:14:32
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id
In-reply-to
Content
How to repeat:

from difflib import SequenceMatcher
seqMatcher = SequenceMatcher(None, "德阳孩子", "孩子德阳")
seqMatcher.get_matching_blocks()

Expect Result:
[Match(a=0, b=3, size=2), Match(a=2, b=0, size=2), Match(a=5, b=5, size=0)]

Current Result:
[Match(a=0, b=3, size=2), Match(a=5, b=5, size=0)]
History
Date User Action Args
2018-11-21 07:14:32Boris Yanglinkissue35288 messages
2018-11-21 07:14:32Boris Yangcreate