This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author sandro.tosi
Recipients brian.curtin, docs@python, ezio.melotti, jwilk, python-dev, sandro.tosi, tim.golden
Date 2011-08-18.17:01:56
SpamBayes Score 1.8871915e-06
Marked as misclassified No
Message-id <1313686917.84.0.938989970481.issue12761@psf.upfronthosting.co.za>
In-reply-to
Content
After a closer look (thanks Ezio), the proper patch should be something like:


diff --git a/Doc/license.rst b/Doc/license.rst
--- a/Doc/license.rst
+++ b/Doc/license.rst
@@ -874,9 +874,8 @@
 zlib
 ----
 
-The :mod:`zlib` extension is built using an included copy of the zlib
-sources if the zlib version found on the system is too old to be
-used for the build::
+The :mod:`zlib` extension is built using the zlib version found on the system,
+but an included copy of the zlib sources is shipped for the Windows build::
 
   Copyright (C) 1995-2011 Jean-loup Gailly and Mark Adler


because the embedded zlib is not used in the linux build (but always the system one, and if absent, no zlib module is built) while we have several references of Modules/zlib/ files in PC/VC* and PCbuild/*.vcproj (that I can't read); adding to nosy the windows expert to have their opinion.
History
Date User Action Args
2011-08-18 17:01:57sandro.tosisetrecipients: + sandro.tosi, tim.golden, jwilk, ezio.melotti, brian.curtin, docs@python, python-dev
2011-08-18 17:01:57sandro.tosisetmessageid: <1313686917.84.0.938989970481.issue12761@psf.upfronthosting.co.za>
2011-08-18 17:01:57sandro.tosilinkissue12761 messages
2011-08-18 17:01:56sandro.tosicreate