From: Raymond Hettinger Date: Thu, 9 Dec 2010 23:43:34 +0000 (+0000) Subject: Doh! Example pasted twice, but only once in the right place. X-Git-Tag: v3.2b2~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5eb6390fc779d58de4d2080e12af90365ee09272;p=thirdparty%2FPython%2Fcpython.git Doh! Example pasted twice, but only once in the right place. --- diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 8f7df007cbba..111569fc3221 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -593,12 +593,7 @@ New, Improved, and Deprecated Modules 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`.)