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

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


http://hg.python.org/cpython/rev/80de33021488
changeset:   72963:80de33021488
parent:      72960:c16063765d3a
parent:      72962:fc7ee478ed3b
user:        Nadeem Vawda <nadeem.vawda at gmail.com>
date:        Mon Oct 17 19:40:47 2011 +0200
summary:
  Merge #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
@@ -311,6 +311,9 @@
 Library
 -------
 
+- Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are
+  now available on Windows.
+
 - issue #1673007: urllib2  to support HEAD request via new method argument.
   Patch contributions by David Stanek, Patrick Westerhoff and Ezio Melotti.
 
diff --git a/PC/pyconfig.h b/PC/pyconfig.h
--- a/PC/pyconfig.h
+++ b/PC/pyconfig.h
@@ -644,6 +644,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