diff options
author | Gustavo Niemeyer <gustavo@niemeyer.net> | 2002-11-05 16:50:05 (GMT) |
---|---|---|
committer | Gustavo Niemeyer <gustavo@niemeyer.net> | 2002-11-05 16:50:05 (GMT) |
commit | f8ca8364c9682df468a982a5f29831b76521bb6d (patch) | |
tree | 21c553e9abd138d4989b138f4e778ae5a07a41bc /Misc/NEWS | |
parent | 6b016852f83621178ae053509c044d6fd27f46e3 (diff) | |
download | cpython-f8ca8364c9682df468a982a5f29831b76521bb6d.zip cpython-f8ca8364c9682df468a982a5f29831b76521bb6d.tar.gz cpython-f8ca8364c9682df468a982a5f29831b76521bb6d.tar.bz2 |
Patch implementing bz2 module.
* setup.py
(PyBuildExt.detect_modules): Included bz2 module detection.
* Modules/bz2module.c
* Lib/test/test_bz2.py
* Doc/lib/libbz2.tex
Included files implementing, testing, and documenting bz2 module.
* Doc/Makefile.deps
* Doc/lib/lib.tex
Include references to libbz2.tex.
* Misc/NEWS
(Library): Mention distutils' c++ linkage patch, and new bz2 module.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -534,6 +534,14 @@ Library has changed slightly so that an explicit maxlinelen value is always honored. +- distutils' build_ext command now links c++ extensions with the c++ + compiler available in the Makefile or CXX environment variable, if + running under *nix. + +- New module bz2: provides a comprehensive interface for the bz2 compression + library. It implements a complete file interface, one-shot (de)compression + functions, and types for sequential (de)compression. + Tools/Demos ----------- |