[Python-checkins] [doc] Remove duplicated operator.itemgetter example (GH-24178)

orsenthil webhook-mailer at python.org
Tue Apr 27 00:15:39 EDT 2021


https://github.com/python/cpython/commit/743e2bae10d2010fd1e29b772c9da64efc7c9c47
commit: 743e2bae10d2010fd1e29b772c9da64efc7c9c47
branch: master
author: Andre Delfino <adelfino at gmail.com>
committer: orsenthil <skumaran at gatech.edu>
date: 2021-04-26T21:15:31-07:00
summary:

[doc] Remove duplicated operator.itemgetter example (GH-24178)

* Remove duplicated itemgetter example
* Add spaces

files:
M Doc/library/operator.rst

diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index 36c53556c2685..0cdba68f3770e 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -319,15 +319,12 @@ expect a function argument.
    method.  Dictionaries accept any hashable value.  Lists, tuples, and
    strings accept an index or a slice:
 
-      >>> itemgetter('name')({'name': 'tu', 'age': 18})
-      'tu'
       >>> itemgetter(1)('ABCDEFG')
       'B'
-      >>> itemgetter(1,3,5)('ABCDEFG')
+      >>> itemgetter(1, 3, 5)('ABCDEFG')
       ('B', 'D', 'F')
-      >>> itemgetter(slice(2,None))('ABCDEFG')
+      >>> itemgetter(slice(2, None))('ABCDEFG')
       'CDEFG'
-
       >>> soldier = dict(rank='captain', name='dotterbart')
       >>> itemgetter('rank')(soldier)
       'captain'



More information about the Python-checkins mailing list