[Python-checkins] cpython (2.7): Issue #20005: Fix typo in operator docs. Patch by Claudiu Popa.

zach.ware python-checkins at python.org
Wed Dec 18 19:22:49 CET 2013


http://hg.python.org/cpython/rev/f0eed36bab4c
changeset:   88042:f0eed36bab4c
branch:      2.7
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Wed Dec 18 12:18:36 2013 -0600
summary:
  Issue #20005: Fix typo in operator docs.  Patch by Claudiu Popa.

files:
  Doc/library/operator.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -503,7 +503,7 @@
      ``(b.name, b.date)``.
 
    * After ``f = attrgetter('name.first', 'name.last')``, the call ``f(b)``
-     returns ``(r.name.first, r.name.last)``.
+     returns ``(b.name.first, b.name.last)``.
 
    Equivalent to::
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list