[Python-checkins] python/dist/src/Misc NEWS,1.508,1.509

niemeyer@users.sourceforge.net niemeyer@users.sourceforge.net
Tue, 05 Nov 2002 08:50:07 -0800


Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv13902/Misc

Modified Files:
	NEWS 
Log Message:
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.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.508
retrieving revision 1.509
diff -C2 -d -r1.508 -r1.509
*** NEWS	4 Nov 2002 19:50:11 -0000	1.508
--- NEWS	5 Nov 2002 16:50:05 -0000	1.509
***************
*** 535,538 ****
--- 535,546 ----
    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
  -----------