summaryrefslogtreecommitdiffstats
path: root/Misc
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
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')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 51aff58..67d4040 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -123,6 +123,7 @@ John Cugini
Andrew Dalke
Lars Damerow
Eric Daniel
+Scott David Daniels
Ben Darnell
Jonathan Dasteel
John DeGood
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.