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

eric.araujo python-checkins at python.org
Tue Sep 7 23:35:36 CEST 2010


Author: eric.araujo
Date: Tue Sep  7 23:35:35 2010
New Revision: 84602

Log:
Fix typo in whatsnew (#9793)


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	Tue Sep  7 23:35:35 2010
@@ -194,7 +194,7 @@
   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`.)


More information about the Python-checkins mailing list