From: Éric Araujo Date: Tue, 7 Sep 2010 21:35:35 +0000 (+0000) Subject: Fix typo in whatsnew (#9793) X-Git-Tag: v3.2a3~387 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cc6aac60da1e9ccf55052773c4fb6e5f91de5436;p=thirdparty%2FPython%2Fcpython.git Fix typo in whatsnew (#9793) --- diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index ff54bdda9a7c..49696233f982 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`.)