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.

classification
Title: zlib module documentation wrong version
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, quiver, tds333
Priority: normal Keywords:

Created on 2004-10-19 08:12 by tds333, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg22782 - (view) Author: Wolfgang Langner (tds333) * Date: 2004-10-19 08:12
The documentation of the zlib module is a little bit
out of date:

Version 1.1.3 is the most recent version as of
September 2000.

This is wrong, the most recent version of zlib is:
1.2.1

Change it to:

Version 1.2.1 is the most recent version as of October
2004.

source:
http://www.python.org/dev/doc/devel/lib/module-zlib.html

I hope python 2.4 Release will use this version.
(it is out since end 2003)
msg22783 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2004-10-19 18:58
Logged In: YES 
user_id=11375

Fixed in the text for both 2.4 and 2.3-maint; thanks for
pointing this out.

Note that on Unix platforms, Python will be compiled to use
whatever version of zlib is on the system; it doesn't
include its own copy.

I think the Windows binary version of 2.3.4 used zlib1.1.4;
I don't know what the binary of 2.4 uses.
msg22784 - (view) Author: George Yoshida (quiver) (Python committer) Date: 2004-10-19 19:20
Logged In: YES 
user_id=671362

> I think the Windows binary version of 2.3.4 used zlib1.1.4;
correct.

> I don't know what the binary of 2.4 uses.
>>> import zlib
>>> zlib.ZLIB_VERSION
'1.2.1'
History
Date User Action Args
2022-04-11 14:56:07adminsetgithub: 41048
2004-10-19 08:12:48tds333create