[Python-checkins] gh-93240: clarify wording in IO tutorial (GH-93276) (GH-94081)

ambv webhook-mailer at python.org
Tue Jun 21 15:51:38 EDT 2022


https://github.com/python/cpython/commit/6432a8972b27aa0f2ef625ec538f8487f12e14de
commit: 6432a8972b27aa0f2ef625ec538f8487f12e14de
branch: 3.10
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2022-06-21T21:51:34+02:00
summary:

gh-93240: clarify wording in IO tutorial (GH-93276) (GH-94081)

Co-authored-by: Adam Turner <9087854+AA-Turner at users.noreply.github.com>
(cherry picked from commit 51d673176ac90f2144e3e7a492e5b3ea53bdba2e)

Co-authored-by: paulreece <96156234+paulreece at users.noreply.github.com>

files:
M Doc/tutorial/inputoutput.rst

diff --git a/Doc/tutorial/inputoutput.rst b/Doc/tutorial/inputoutput.rst
index b50063654e262..1f1ef28e5cad4 100644
--- a/Doc/tutorial/inputoutput.rst
+++ b/Doc/tutorial/inputoutput.rst
@@ -179,7 +179,7 @@ square brackets ``'[]'`` to access the keys. ::
    ...       'Dcab: {0[Dcab]:d}'.format(table))
    Jack: 4098; Sjoerd: 4127; Dcab: 8637678
 
-This could also be done by passing the table as keyword arguments with the '**'
+This could also be done by passing the ``table`` dictionary as keyword arguments with the ``**``
 notation. ::
 
    >>> table = {'Sjoerd': 4127, 'Jack': 4098, 'Dcab': 8637678}



More information about the Python-checkins mailing list