summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2008-12-27 15:43:12 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2008-12-27 15:43:12 (GMT)
commit6f193e0e959432f2227c0380b970a82f58c8a0c8 (patch)
tree95cc667e9098a337288573b4e37ea93a4d0c7fdd /Misc
parente57e9990e72f83963a34c37c985bc72c5f27eae5 (diff)
downloadcpython-6f193e0e959432f2227c0380b970a82f58c8a0c8.zip
cpython-6f193e0e959432f2227c0380b970a82f58c8a0c8.tar.gz
cpython-6f193e0e959432f2227c0380b970a82f58c8a0c8.tar.bz2
Issue #4756: zipfile.is_zipfile() now supports file-like objects.
Patch by Gabriel Genellina.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2e4552d..593478d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -86,6 +86,9 @@ Core and Builtins
Library
-------
+- Issue #4756: zipfile.is_zipfile() now supports file-like objects. Patch by
+ Gabriel Genellina.
+
- Issue #4400: .pypirc default generated file was broken in distutils.
- Issue #4736: io.BufferedRWPair's closed property now functions properly.