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 drevicko
Recipients drevicko
Date 2014-06-02.10:03:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401703436.14.0.164374106757.issue21635@psf.upfronthosting.co.za>
In-reply-to
Content
difflib.SequenceMatcher.get_matching_blocks() last lines:


        non_adjacent.append( (la, lb, 0) )
        self.matching_blocks = non_adjacent
        return map(Match._make, self.matching_blocks)

should be something like:

        non_adjacent.append( (la, lb, 0) )
        self.matching_blocks = map(Match._make, non_adjacent)
        return self.matching_blocks
History
Date User Action Args
2014-06-02 10:03:56drevickosetrecipients: + drevicko
2014-06-02 10:03:56drevickosetmessageid: <1401703436.14.0.164374106757.issue21635@psf.upfronthosting.co.za>
2014-06-02 10:03:56drevickolinkissue21635 messages
2014-06-02 10:03:55drevickocreate