[Python-checkins] cpython (2.7): 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/80f07777accd
changeset:   72961:80f07777accd
branch:      2.7
parent:      72954:a27df4b88d67
user:        Nadeem Vawda <nadeem.vawda at gmail.com>
date:        Mon Oct 17 19:33:38 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
@@ -60,6 +60,9 @@
 Library
 -------
 
+- Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are
+  now available on Windows.
+
 - Issue #13114: Fix the distutils commands check and register when the
   long description is a Unicode string with non-ASCII characters.
 
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -643,6 +643,9 @@
 #define HAVE_WCSCOLL 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