diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-08-12 22:25:01 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-08-12 22:25:01 (GMT) |
commit | 5e824c37d36c062bcc267453541a99e59c084c2a (patch) | |
tree | fe504e024b6770c1293ef63d5cf846fd6b3d5b1a /Misc | |
parent | 39f77bc90e16a6f3fffc7f770bc7bc6bd2c7a0a8 (diff) | |
download | cpython-5e824c37d36c062bcc267453541a99e59c084c2a.zip cpython-5e824c37d36c062bcc267453541a99e59c084c2a.tar.gz cpython-5e824c37d36c062bcc267453541a99e59c084c2a.tar.bz2 |
SF patch #445412 extract ndiff functionality to difflib, from
David Goodger.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 7 |
2 files changed, 8 insertions, 0 deletions
@@ -144,6 +144,7 @@ Harry Henry Gebel Thomas Gellekum Ben Gertzfield Jonathan Giddy +David Goodger Hans de Graaff Duncan Grisby Dag Gruneau @@ -3,6 +3,9 @@ What's New in Python 2.2a2? Tests +- regrtest.py now knows which tests are expected to be skipped on some + platforms, allowing to give clearer test result output. + - Several new tests in the standard test suite, with special thanks to Nick Mathewson. @@ -14,6 +17,10 @@ Core Library +- New class Differ and new functions ndiff() and restore() in difflib.py. + These package the algorithms used by the popular Tools/scripts/ndiff.py, + for progammatic reuse. + - New function xml.sax.saxutils.quoteattr(): Quote an XML attribute value using the minimal quoting required for the value; more reliable than using xml.sax.saxutils.escape() for attribute values. |