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

orsenthil webhook-mailer at python.org
Tue Apr 27 00:16:37 EDT 2021


https://github.com/python/cpython/commit/1d7a53759ff41162aded89e8fd4e1867d8ba506b
commit: 1d7a53759ff41162aded89e8fd4e1867d8ba506b
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: orsenthil <skumaran at gatech.edu>
date: 2021-04-26T21:16:33-07:00
summary:

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

* Remove duplicated itemgetter example
* Add spaces
(cherry picked from commit 743e2bae10d2010fd1e29b772c9da64efc7c9c47)

Co-authored-by: Andre Delfino <adelfino at gmail.com>

files:
M Doc/library/operator.rst

diff --git a/Doc/library/operator.rst b/Doc/library/operator.rst
index fa02bde84650e..f2fb084ac1720 100644
--- a/Doc/library/operator.rst
+++ b/Doc/library/operator.rst
@@ -315,15 +315,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