[Python-checkins] python/nondist/peps pep-0290.txt,1.10,1.11

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Fri Dec 5 12:51:42 EST 2003


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1:/tmp/cvs-serv27031

Modified Files:
	pep-0290.txt 
Log Message:
Note that the Pending Deprecation warning was removed from apply() in
2.3.3, but that the function remains deprecated.


Index: pep-0290.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0290.txt,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** pep-0290.txt	27 Sep 2003 02:53:59 -0000	1.10
--- pep-0290.txt	5 Dec 2003 17:51:40 -0000	1.11
***************
*** 130,133 ****
--- 130,138 ----
      apply(f, args, kwds)  -->  f(*args, **kwds)
  
+ Note: The Pending Deprecation was removed from apply() in Python 2.3.3
+ since it creates pain for people who need to maintain code that works
+ with Python versions as far back as 1.5.2, where there was no
+ alternative to apply().  The function remains deprecated, however.
+ 
  
  Python 2.2 or Later





More information about the Python-checkins mailing list