[Python-3000-checkins] r55545 - in python/branches/py3k-struni: Lib/test/test_inspect.py Misc/NEWS

guido.van.rossum python-3000-checkins at python.org
Thu May 24 04:27:24 CEST 2007


Author: guido.van.rossum
Date: Thu May 24 04:27:17 2007
New Revision: 55545

Modified:
   python/branches/py3k-struni/   (props changed)
   python/branches/py3k-struni/Lib/test/test_inspect.py
   python/branches/py3k-struni/Misc/NEWS
Log:
Merged revisions 55514-55544 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/p3yk

........
  r55526 | neal.norwitz | 2007-05-22 23:42:22 -0700 (Tue, 22 May 2007) | 1 line
  
  reduce was removed a while ago
........
  r55544 | guido.van.rossum | 2007-05-23 19:23:53 -0700 (Wed, 23 May 2007) | 2 lines
  
  Fix test_inspect.  It seems my previous "fix" was due to a stale .pyc file.
........


Modified: python/branches/py3k-struni/Lib/test/test_inspect.py
==============================================================================
--- python/branches/py3k-struni/Lib/test/test_inspect.py	(original)
+++ python/branches/py3k-struni/Lib/test/test_inspect.py	Thu May 24 04:27:17 2007
@@ -219,7 +219,7 @@
     fodderFile = mod2
 
     def test_wrapped_decorator(self):
-        self.assertSourceEqual(mod2.wrapped, 14, 17)
+        self.assertSourceEqual(mod2.wrapped, 16, 17)
 
     def test_replacing_decorator(self):
         self.assertSourceEqual(mod2.gone, 9, 10)

Modified: python/branches/py3k-struni/Misc/NEWS
==============================================================================
--- python/branches/py3k-struni/Misc/NEWS	(original)
+++ python/branches/py3k-struni/Misc/NEWS	Thu May 24 04:27:17 2007
@@ -135,7 +135,7 @@
   backticks (ie, `x`), <>
 
 - Removed these Python builtins:
-  apply(), callable(), coerce(), file()
+  apply(), callable(), coerce(), file(), reduce()
 
 - Removed these Python methods:
   {}.has_key


More information about the Python-3000-checkins mailing list