This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Small typo in 2.6 what's new
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: benjamin.peterson, catlee, georg.brandl
Priority: normal Keywords:

Created on 2008-06-28 04:01 by catlee, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg68868 - (view) Author: Chris AtLee (catlee) * Date: 2008-06-28 04:01
Index: Doc/whatsnew/2.6.rst
===================================================================
--- Doc/whatsnew/2.6.rst	(revision 64571)
+++ Doc/whatsnew/2.6.rst	(working copy)
@@ -1284,7 +1284,7 @@
 Here are all of the changes that Python 2.6 makes to the core Python
language.
 
 * The :func:`hasattr` function was catching and ignoring all errors,
-  under the assumption that they meant a :meth:`__getattr__` method has 
+  under the assumption that they meant a :meth:`__getattr__` method was 
   failing somewhere and the return value of :func:`hasattr` would therefore
   be ``False``.  This logic shouldn't be applied to 
   :exc:`KeyboardInterrupt` and :exc:`SystemExit`, however; Python 2.6 will
msg68875 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2008-06-28 13:18
Thanks. Fixed in r64572.
History
Date User Action Args
2022-04-11 14:56:35adminsetgithub: 47474
2008-06-28 13:18:41benjamin.petersonsetstatus: open -> closed
nosy: + benjamin.peterson
resolution: fixed
messages: + msg68875
2008-06-28 04:01:56catleecreate