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 Boris Yang
Date 2018-11-21.07:15:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1542784529.35.0.788709270274.issue35289@psf.upfronthosting.co.za>
In-reply-to
Content
How to repeat:

# -*- coding: UTF-8 -*-
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:15:29Boris Yangsetrecipients: + Boris Yang
2018-11-21 07:15:29Boris Yangsetmessageid: <1542784529.35.0.788709270274.issue35289@psf.upfronthosting.co.za>
2018-11-21 07:15:29Boris Yanglinkissue35289 messages
2018-11-21 07:15:29Boris Yangcreate