[Python-checkins] r85572 - python/branches/py3k/Doc/library/functions.rst

georg.brandl python-checkins at python.org
Sat Oct 16 20:51:05 CEST 2010


Author: georg.brandl
Date: Sat Oct 16 20:51:05 2010
New Revision: 85572

Log:
#10122: typo fix.

Modified:
   python/branches/py3k/Doc/library/functions.rst

Modified: python/branches/py3k/Doc/library/functions.rst
==============================================================================
--- python/branches/py3k/Doc/library/functions.rst	(original)
+++ python/branches/py3k/Doc/library/functions.rst	Sat Oct 16 20:51:05 2010
@@ -447,7 +447,7 @@
 
 .. function:: getattr(object, name[, default])
 
-   Return the value of the named attributed of *object*.  *name* must be a string.
+   Return the value of the named attribute of *object*.  *name* must be a string.
    If the string is the name of one of the object's attributes, the result is the
    value of that attribute.  For example, ``getattr(x, 'foobar')`` is equivalent to
    ``x.foobar``.  If the named attribute does not exist, *default* is returned if


More information about the Python-checkins mailing list