summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2010-09-07 21:35:35 (GMT)
committerÉric Araujo <merwok@netwok.org>2010-09-07 21:35:35 (GMT)
commitcc6aac60da1e9ccf55052773c4fb6e5f91de5436 (patch)
tree36f4a9f1a16a2302b8e2ec01913ae97542c18351
parent4b6fdf38525382dc279c5b32023f931e6db98591 (diff)
downloadcpython-cc6aac60da1e9ccf55052773c4fb6e5f91de5436.zip
cpython-cc6aac60da1e9ccf55052773c4fb6e5f91de5436.tar.gz
cpython-cc6aac60da1e9ccf55052773c4fb6e5f91de5436.tar.bz2
Fix typo in whatsnew (#9793)
-rw-r--r--Doc/whatsnew/3.2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst
index ff54bdd..4969623 100644
--- a/Doc/whatsnew/3.2.rst
+++ b/Doc/whatsnew/3.2.rst
@@ -194,7 +194,7 @@ Some smaller changes made to the core Python language are:
by calling :func:`getattr` and throwing away the results. This is necessary
because dynamic attribute creation is possible using :meth:`__getattribute__`
or :meth:`__getattr__`. If :func:`hasattr` were to just scan instance and class
- dictionaries it would miss the dynmaic methods and make it difficult to
+ dictionaries it would miss the dynamic methods and make it difficult to
implement proxy objects.
(Discovered by Yury Selivanov and fixed by Benjamin Peterson; :issue:`9666`.)