[Python-checkins] r87149 - python/branches/py3k/Doc/whatsnew/3.2.rst

raymond.hettinger python-checkins at python.org
Fri Dec 10 00:43:34 CET 2010


Author: raymond.hettinger
Date: Fri Dec 10 00:43:34 2010
New Revision: 87149

Log:
Doh! Example pasted twice, but only once in the right place.

Modified:
   python/branches/py3k/Doc/whatsnew/3.2.rst

Modified: python/branches/py3k/Doc/whatsnew/3.2.rst
==============================================================================
--- python/branches/py3k/Doc/whatsnew/3.2.rst	(original)
+++ python/branches/py3k/Doc/whatsnew/3.2.rst	Fri Dec 10 00:43:34 2010
@@ -593,12 +593,7 @@
   pointing to the original callable function.  This allows wrapped functions to
   be introspected.  It also copies :attr:`__annotations__` if defined.  And now
   it also gracefully skips over missing attributes such as :attr:`__doc__` which
-  might not be defined for the wrapped callable:
-
-  >>> callable(max)
-  True
-  >>> callable(20)
-  False
+  might not be defined for the wrapped callable.
 
   (By Nick Coghlan and Terrence Cole; :issue:`9567`, :issue:`3445`, and
   :issue:`8814`.)


More information about the Python-checkins mailing list