summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2003-02-03 20:45:52 (GMT)
committerGuido van Rossum <guido@python.org>2003-02-03 20:45:52 (GMT)
commit7d9ea5013f2f6122aa83a68429bf2dd5e5a00017 (patch)
treefd7852cc158ec0ffd49a320515b380b2dafe6798 /Misc/NEWS
parent94c30c012431c8495c73850a4438b0b7a3a2b9d4 (diff)
downloadcpython-7d9ea5013f2f6122aa83a68429bf2dd5e5a00017.zip
cpython-7d9ea5013f2f6122aa83a68429bf2dd5e5a00017.tar.gz
cpython-7d9ea5013f2f6122aa83a68429bf2dd5e5a00017.tar.bz2
- Thanks to Scott David Daniels, a subtle bug in how the zlib
extension implemented flush() was fixed. Scott also rewrite the zlib test suite using the unittest module. (SF bug #640230 and patch #678531.) Backport candidate I think.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f1e0cd2..ece29b6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -33,6 +33,11 @@ Core and builtins
Extension modules
-----------------
+- Thanks to Scott David Daniels, a subtle bug in how the zlib
+ extension implemented flush() was fixed. Scott also rewrite the
+ zlib test suite using the unittest module. (SF bug #640230 and
+ patch #678531.)
+
- Added an itertools module containing high speed, memory efficient
looping constructs inspired by tools from Haskell and SML.