[Python-checkins] CVS: python/dist/src/Misc NEWS,1.292,1.293

Guido van Rossum gvanrossum@users.sourceforge.net
Sun, 21 Oct 2001 17:43:45 -0700


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

Modified Files:
	NEWS 
Log Message:
Methods of built-in types now properly check for keyword arguments
(formerly these were silently ignored).  The only built-in methods
that take keyword arguments are __call__, __init__ and __new__.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.292
retrieving revision 1.293
diff -C2 -d -r1.292 -r1.293
*** NEWS	2001/10/19 17:55:30	1.292
--- NEWS	2001/10/22 00:43:43	1.293
***************
*** 5,8 ****
--- 5,12 ----
  Type/class unification and new-style classes
  
+ - Methods of built-in types now properly check for keyword arguments
+   (formerly these were silently ignored).  The only built-in methods
+   that take keyword arguments are __call__, __init__ and __new__.
+ 
  Core and builtins