Home | History | Annotate | Download | only in python2.7

Lines Matching full:abcd

227         >>> s.set_seqs("abcd", "bcde")
240 >>> s = SequenceMatcher(None, "abcd", "bcde")
266 >>> s = SequenceMatcher(None, "abcd", "bcde")
269 >>> s.set_seq2("abcd")
367 >>> s = SequenceMatcher(None, " abcd", "abcd abcd")
379 junk. That prevents " abcd" from matching the " abcd" at the tail
380 end of the second sequence directly. Instead only the "abcd" can
381 match, and matches the leftmost "abcd" in the second sequence:
383 >>> s = SequenceMatcher(lambda x: x==" ", " abcd", "abcd abcd")
474 >>> s = SequenceMatcher(None, "abxcd", "abcd")
649 >>> s = SequenceMatcher(None, "abcd", "bcde")