[Python-checkins] python/dist/src/Misc NEWS,1.488,1.489

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Wed, 25 Sep 2002 08:02:46 -0700


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

Modified Files:
	NEWS 
Log Message:
Disable building of the fpectl module -- it's dangerous or useless
except in the hands of experts.  Will backport to 2.2.2.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.488
retrieving revision 1.489
diff -C2 -d -r1.488 -r1.489
*** NEWS	20 Sep 2002 17:08:52 -0000	1.488
--- NEWS	25 Sep 2002 15:02:44 -0000	1.489
***************
*** 500,507 ****
  -----
  
  - The public Python C API will generally be declared using PyAPI_FUNC
!    and PyAPI_DATA macros, while Python extension module init functions
!    will be declared with PyMODINIT_FUNC.  DL_EXPORT/DL_IMPORT macros
!    are deprecated.
  
  - A bug was fixed that could cause COUNT_ALLOCS builds to segfault, or
--- 500,510 ----
  -----
  
+ - The fpectl module is not built by default; it's dangerous or useless
+   except in the hands of experts.
+ 
  - The public Python C API will generally be declared using PyAPI_FUNC
!   and PyAPI_DATA macros, while Python extension module init functions
!   will be declared with PyMODINIT_FUNC.  DL_EXPORT/DL_IMPORT macros
!   are deprecated.
  
  - A bug was fixed that could cause COUNT_ALLOCS builds to segfault, or