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: bz2 compression module
Type: Stage:
Components: Extension Modules Versions: Python 2.3
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: niemeyer Nosy List: loewis, niemeyer
Priority: low Keywords: patch

Created on 2002-11-04 19:07 by niemeyer, last changed 2022-04-10 16:05 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
bz2.patch.bz2 niemeyer, 2002-11-04 19:07
Messages (3)
msg41558 - (view) Author: Gustavo Niemeyer (niemeyer) * (Python committer) Date: 2002-11-04 19:07
As discussed in python-dev, here is the patch
implementing the bz2 module, including comrehensive
documentation and tests.
msg41559 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2002-11-04 23:32
Logged In: YES 
user_id=21627

The patch looks fine overall, so please apply it. Don't
forget to add an entry to Misc/NEWS. Providing an
appropriate entry in Modules/Setup.dist might also be a good
idea.

A couple of spelling corrections:
- Use imperative for doc strings, not indicative. I.e. write
"Return the next line", not "Return next line".

- Review the text for missing articles. In general, an
article is needed before every noun in English. A native
speaker should review this after checkin - I don't think we
need to find all grammar errors on SF.

- "one shot decompression" -> "one-shot decompression"
msg41560 - (view) Author: Gustavo Niemeyer (niemeyer) * (Python committer) Date: 2002-11-05 17:09
Logged In: YES 
user_id=7887

Applied as:

setup.py:1.112->1.113 
Doc/Makefile.deps:1.89->1.90 
Doc/lib/lib.tex:1.204->1.205 
Doc/lib/libbz2.tex:INITIAL->1.1 
Lib/test/test_bz2.py:INITIAL->1.1 
Misc/NEWS:1.508->1.509 
Modules/bz2module.c:INITIAL->1.1 

Thank you!
History
Date User Action Args
2022-04-10 16:05:48adminsetgithub: 37410
2002-11-04 19:07:24niemeyercreate