(original) (raw)

changeset: 72962:fc7ee478ed3b branch: 3.2 parent: 72957:53c87a0275ab user: Nadeem Vawda nadeem.vawda@gmail.com date: Mon Oct 17 19:34:22 2011 +0200 files: Misc/NEWS PC/pyconfig.h description: Issue #13194: zlib.compressobj().copy() and zlib.decompressobj().copy() are now available on Windows. diff -r 53c87a0275ab -r fc7ee478ed3b Misc/NEWS --- a/Misc/NEWS Mon Oct 17 13:09:27 2011 -0400 +++ b/Misc/NEWS Mon Oct 17 19:34:22 2011 +0200 @@ -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 -r 53c87a0275ab -r fc7ee478ed3b PC/pyconfig.h --- a/PC/pyconfig.h Mon Oct 17 13:09:27 2011 -0400 +++ b/PC/pyconfig.h Mon Oct 17 19:34:22 2011 +0200 @@ -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 header file. */ /* #undef HAVE_DLFCN_H *//nadeem.vawda@gmail.com