[Python-checkins] cpython (3.2): Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now

nadeem.vawda python-checkins at python.org
Mon Oct 17 19:41:19 CEST 2011


http://hg.python.org/cpython/rev/fc7ee478ed3b
changeset:   72962:fc7ee478ed3b
branch:      3.2
parent:      72957:53c87a0275ab
user:        Nadeem Vawda <nadeem.vawda at gmail.com>
date:        Mon Oct 17 19:34:22 2011 +0200
summary:
  Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now available on Windows.

files:
  Misc/NEWS     |  3 +++
  PC/pyconfig.h |  3 +++
  2 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -47,6 +47,9 @@
 Library
 -------
 
+- Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are
+  now available on Windows.
+
 - Issue #13158: Fix decoding and encoding of GNU tar specific base-256 number
   fields in tarfile.
 
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -648,6 +648,9 @@
 #define HAVE_WCSXFRM 1
 #endif
 
+/* Define if the zlib library has inflateCopy */
+#define HAVE_ZLIB_COPY 1
+
 /* Define if you have the <dlfcn.h> header file.  */
 /* #undef HAVE_DLFCN_H */
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list