[Python-checkins] CVS: python/dist/src/Doc/whatsnew whatsnew23.tex,1.3,1.4

A.M. Kuchling akuchling@users.sourceforge.net
Tue, 02 Apr 2002 06:25:28 -0800


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory usw-pr-cvs1:/tmp/cvs-serv24736

Modified Files:
	whatsnew23.tex 
Log Message:
Add an item


Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** whatsnew23.tex	1 Apr 2002 19:28:09 -0000	1.3
--- whatsnew23.tex	2 Apr 2002 14:25:25 -0000	1.4
***************
*** 241,244 ****
--- 241,264 ----
  PyArg_NoArgs macro is now deprecated
  
+ ===
+ Introduce two new flag bits that can be set in a PyMethodDef method
+ descriptor, as used for the tp_methods slot of a type.  These new flag
+ bits are both optional, and mutually exclusive.  Most methods will not
+ use either.  These flags are used to create special method types which
+ exist in the same namespace as normal methods without having to use
+ tedious construction code to insert the new special method objects in
+ the type's tp_dict after PyType_Ready() has been called.
+ 
+ If METH_CLASS is specified, the method will represent a class method
+ like that returned by the classmethod() built-in.
+ 
+ If METH_STATIC is specified, the method will represent a static method
+ like that returned by the staticmethod() built-in.
+ 
+ These flags may not be used in the PyMethodDef table for modules since
+ these special method types are not meaningful in that case; a
+ ValueError will be raised if these flags are found in that context.
+ ===
+ 
  Ports: