[Python-checkins] python/dist/src/Misc NEWS,1.467,1.468

gvanrossum@users.sourceforge.net gvanrossum@users.sourceforge.net
Wed, 14 Aug 2002 14:20:35 -0700


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

Modified Files:
	NEWS 
Log Message:
Add news about Fred's change to Py_InitModule4().


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.467
retrieving revision 1.468
diff -C2 -d -r1.467 -r1.468
*** NEWS	14 Aug 2002 16:11:30 -0000	1.467
--- NEWS	14 Aug 2002 21:20:32 -0000	1.468
***************
*** 483,486 ****
--- 483,490 ----
  C API
  
+ - The Py_InitModule*() functions now accept NULL for the 'methods'
+   argument.  Modules without global functions are becoming more common
+   now that factories can be types rather than functions.
+ 
  - New C API PyUnicode_FromOrdinal() which exposes unichr() at C
    level.