Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove statement about meaning of constants; arguably it's incorrect | Andrew M. Kuchling | 2005-09-01 | 1 | -2/+1 |
| | |||||
* | From c.l.py comments: link to zlib manual, and disclaim completeness | Andrew M. Kuchling | 2005-08-31 | 1 | -2/+9 |
| | |||||
* | Bug #1088206: zlib decompressobj documentation typo | Raymond Hettinger | 2004-12-20 | 1 | -1/+1 |
| | |||||
* | Remove the current version of zlib (we'll just have to keep updating it); ↵ | Andrew M. Kuchling | 2004-10-19 | 1 | -5/+4 |
| | | | | rewrite following sentence to make sense without the previous one | ||||
* | [Bug #1049826] Update version of zlib referenced in text | Andrew M. Kuchling | 2004-10-19 | 1 | -2/+2 |
| | |||||
* | Patch #640236: Better eplain unused data. | Martin v. Löwis | 2003-06-21 | 1 | -7/+12 |
| | |||||
* | [ #403753 ] zlib decompress; uncontrollable memory usage | Jeremy Hylton | 2001-10-16 | 1 | -2/+16 |
| | | | | | | | | | | | | | Mostly by Toby Dickenson and Titus Brown. Add an optional argument to a decompression object's decompress() method. The argument specifies the maximum length of the return value. If the uncompressed data exceeds this length, the excess data is stored as the unconsumed_tail attribute. (Not to be confused with unused_data, which is a separate issue.) Difference from SF patch: Default value for unconsumed_tail is "" rather than None. It's simpler if the attribute is always a string. | ||||
* | Added notes to clarify that binascii.crc32(), zlib.crc32(), and | Fred Drake | 2001-10-15 | 1 | -2/+6 |
| | | | | zlib.adler32() are not suitable as general hash functions. | ||||
* | Updated link to zlib's home page. | Fred Drake | 2001-06-25 | 1 | -3/+2 |
| | |||||
* | Cut-&-paste-o noted by Wolfgang Teschner: decompressobj() returns | Fred Drake | 2001-04-18 | 1 | -1/+1 |
| | | | | *DE*compression objects, not compression objects! | ||||
* | Make all the \seemodule explanations consistent: start with a capitalized | Fred Drake | 2000-10-18 | 1 | -1/+1 |
| | | | | | | letter and end with proper punctuation. "Documenting Python" will be updated accordingly so that this will be editorial policy for the Python documentation. | ||||
* | Update *both* uses of the URL to the zlib home page, and use the version | Fred Drake | 2000-09-16 | 1 | -6/+6 |
| | | | | advertised as the canonical form. | ||||
* | Update link to the zlib homepage. | Fred Drake | 2000-09-16 | 1 | -4/+4 |
| | |||||
* | Merged changes from the 1.5.2p2 release. | Fred Drake | 2000-04-03 | 1 | -10/+33 |
| | | | | (Very rough.) | ||||
* | The version information here was checked good in 1999, not 199. ;-) | Fred Drake | 1999-04-21 | 1 | -6/+6 |
| | | | | | Added "See also" reference to zlib home page, even though it's mentioned in the text. | ||||
* | correct version info for zlib. | Jeremy Hylton | 1999-04-05 | 1 | -6/+11 |
| | | | | | | add note about module failing with old versions of the library. update comment that explains that this doc is *still* out of date | ||||
* | Shorten a few section titles. | Fred Drake | 1999-02-20 | 1 | -2/+2 |
| | |||||
* | Document the optional mode argument (Z_FLUSH, Z_SYNC_FLUSH, etc.) | Andrew M. Kuchling | 1998-12-31 | 1 | -4/+11 |
| | | | | to the flush() method of compressor objects. | ||||
* | New section header style. | Fred Drake | 1998-08-10 | 1 | -1/+2 |
| | | | | Fix up a few synopses. | ||||
* | Added a synopsis. | Fred Drake | 1998-07-27 | 1 | -2/+3 |
| | |||||
* | Adjusted to use the new module synopsis support macros. | Fred Drake | 1998-07-23 | 1 | -2/+4 |
| | |||||
* | Somewhat updated, but not checked for everything (just the stuff I was using). | Fred Drake | 1998-06-19 | 1 | -14/+15 |
| | |||||
* | Removed misleading comment about GNU software. This module and the zlib | Fred Drake | 1998-04-09 | 1 | -3/+2 |
| | | | | | library have no relationship with GNU software other than implementing some of the same algorithms and file format. (The zlib module is more general.) | ||||
* | Added index entry. | Fred Drake | 1998-04-04 | 1 | -0/+1 |
| | |||||
* | Nits. | Fred Drake | 1998-04-03 | 1 | -25/+33 |
| | | | | | | Add {excdesc} for zlib.error. Use {methoddesc} where appropriate. | ||||
* | Change "\," to just "," in function signatures. This is easier to maintain, | Fred Drake | 1998-03-17 | 1 | -3/+3 |
| | | | | | works better with LaTeX2HTML, and allows some simplification of the python.sty macros. | ||||
* | Remove all \bcode / \ecode cruft; this is no longer needed. See previous | Fred Drake | 1998-02-13 | 1 | -1/+1 |
| | | | | | | | | | checkin of myformat.sty. Change "\renewcommand{\indexsubitem}{(...)}" to "\setindexsubitem{(...)}" everywhere. Some other minor nits that I happened to come across. | ||||
* | Converted to use new macros. This example demonstrate \method{} and, more | Fred Drake | 1998-01-22 | 1 | -16/+17 |
| | | | | importantly, \url{}. | ||||
* | Correct small nits reported by Rob Hooft. | Guido van Rossum | 1997-12-30 | 1 | -1/+3 |
| | |||||
* | AMK's megapatch: | Guido van Rossum | 1997-07-17 | 1 | -0/+4 |
| | | | | | | | * \bcode, \ecode added everywhere * \label{module-foo} added everywhere * A few \seealso sections added. * Indentation fixed inside verbatim in lib*tex files | ||||
* | Fix a sentence which ends "...is 6, which." (AMK) | Guido van Rossum | 1997-06-02 | 1 | -1/+1 |
| | |||||
* | Updated web ref and version#. Folded some long lines. | Guido van Rossum | 1997-04-30 | 1 | -18/+10 |
| | |||||
* | zlib by AMK | Guido van Rossum | 1997-04-30 | 1 | -0/+107 |