summaryrefslogtreecommitdiff
path: root/Lib/difflib.py
Commit message (Expand)AuthorAgeFilesLines
* Issue 11747: Fix output format for context diffs.Raymond Hettinger2011-04-121-28/+61
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
* #2986 Add autojunk parameter to SequenceMatcher to optionally disable 'popula...Terry Reedy2010-11-111-37/+36
* Issue #7585: use tab between components in unified and context diff headers.R. David Murray2010-04-121-16/+19
* Fix for issue1488943 - difflib.Differ() doesn't always add hints for tabSenthil Kumaran2009-11-231-4/+5
* Issue #5341: Fix a variety of spelling errors.Mark Dickinson2009-02-211-1/+1
* Use functools.reduce() in difflib instead of __builtin__.reduce() to silenceBrett Cannon2008-08-091-0/+1
* Issue 3189: Py3k DeprecationWarning in difflibRaymond Hettinger2008-06-241-4/+4
* Improve usability of the SequenceMatcher by returning named tuples describing...Raymond Hettinger2008-01-111-7/+10
* SF #1637850: make_table in difflib did not work with unicodeRaymond Hettinger2007-03-081-5/+4
* [Bug #1622533] Make docstrings raw strings because they contain control chara...Andrew M. Kuchling2007-01-051-1/+1
* Repaired typo in new comment.Tim Peters2006-06-141-1/+1
* SequenceMatcher.get_matching_blocks(): This now guarantees thatTim Peters2006-06-141-8/+34
* get_matching_blocks(): rewrote code & comments so they match; addedTim Peters2006-06-131-14/+14
* Make use of new str.startswith/endswith semantics.Georg Brandl2006-06-091-3/+2
* Patch #1413711: Certain patterns of differences were making difflibGustavo Niemeyer2006-01-311-17/+22
* Fix all wrong instances of "it's".Georg Brandl2005-07-221-2/+2
* SF bug 1054821: difflib HtmlDiff() extra space on inserted 1 character linesTim Peters2004-11-121-2/+2
* Typo fix: 'comparisions' is not a wordAndrew M. Kuchling2004-09-101-1/+1
* Whitespace normalization. test_difflib passes again.Tim Peters2004-08-291-31/+31
* Reverting whitespace normalization. test_difflib fails with it -- theTim Peters2004-08-291-31/+31
* Whitespace normalization.Tim Peters2004-08-291-31/+31
* Patch #914575: difflib side by side diff support, diff.py s/b/s HTML option.Martin v. Löwis2004-08-291-3/+676
* Repair typo in docstring.Tim Peters2004-07-311-1/+1
* SequenceMatcher(None, [], []).get_grouped_opcodes() now returns a generatorBrett Cannon2004-07-101-0/+2
* Reverse argument order for nsmallest() and nlargest().Raymond Hettinger2004-06-151-1/+1
* Apply heapq.nlargest() to find best matches.Raymond Hettinger2004-06-131-2/+4
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-4/+4
* Let library modules use the new keyword arguments for list.sort().Raymond Hettinger2003-10-161-8/+4
* Fix faulty doctests. There is no results attribute.Raymond Hettinger2003-07-161-5/+6
* Fix SF bug #763023, difflib.py: ratio() zero division not caughtNeal Norwitz2003-07-011-3/+8
* Fix docstringRaymond Hettinger2003-06-171-1/+1
* For the context and unified diff functions:Raymond Hettinger2003-06-081-15/+9
* Added functions for creating context diffs and unified diffs.Raymond Hettinger2003-06-081-1/+200
* Added missing names to __all__.Raymond Hettinger2002-10-301-1/+1
* SF 563203. Replaced 'has_key()' with 'in'.Raymond Hettinger2002-06-011-1/+1
* Mostly in SequenceMatcher.{__chain_b, find_longest_match}:Tim Peters2002-04-291-18/+55
* Add the 'bool' type and its values 'False' and 'True', as described inGuido van Rossum2002-04-031-7/+7
* Remove some now-obsolete generator future statements.Tim Peters2002-04-011-2/+0
* Whitespace normalization.Tim Peters2001-10-041-1/+1
* Make difflib.ndiff() and difflib.Differ.compare() generators. ThisTim Peters2001-09-221-53/+47
* SF patch #445412 extract ndiff functionality to difflib, fromTim Peters2001-08-121-267/+575
* Improve accuracy. In the .tex file, note the new "% BUG:" comments: anTim Peters2001-02-201-3/+3
* Fix a few small typos in the docstrings.Fred Drake2001-02-191-5/+5
* Moved SequenceMatcher from ndiff into new std library module difflib.py.Tim Peters2001-02-101-0/+781