summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-12-09 23:43:34 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-12-09 23:43:34 (GMT)
commit5eb6390fc779d58de4d2080e12af90365ee09272 (patch)
treea17d4835c4787174ebf3d8fb2b6cfcddf2e6a976
parentc95c91880ae0420d594173c584202de014bc5ac9 (diff)
downloadcpython-5eb6390fc779d58de4d2080e12af90365ee09272.zip
cpython-5eb6390fc779d58de4d2080e12af90365ee09272.tar.gz
cpython-5eb6390fc779d58de4d2080e12af90365ee09272.tar.bz2
Doh! Example pasted twice, but only once in the right place.
-rw-r--r--Doc/whatsnew/3.2.rst7
1 files changed, 1 insertions, 6 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index 8f7df00..111569f 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`.)