diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-10-31 09:00:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 09:00:39 (GMT) |
commit | 1e8c18509eb15efb8e80971b9935d17e7bbeabf4 (patch) | |
tree | d5b2bd6c7377e16921320c25f171b48a27ead862 /Doc/tutorial | |
parent | 691196d1af6a7e9d218e3281a8f3385616b2ca86 (diff) | |
download | cpython-1e8c18509eb15efb8e80971b9935d17e7bbeabf4.zip cpython-1e8c18509eb15efb8e80971b9935d17e7bbeabf4.tar.gz cpython-1e8c18509eb15efb8e80971b9935d17e7bbeabf4.tar.bz2 |
[3.6] bpo-35110: Fix unintentional spaces around hyphens and dashes. (GH-10231). (GH-10254)
(cherry picked from commit 3f819ca138db6945ee4271bf13e42db9f9b3b1e4)
Diffstat (limited to 'Doc/tutorial')
-rw-r--r-- | Doc/tutorial/controlflow.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index c407ad4..bf6fbe2 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -572,8 +572,8 @@ or tuple:: .. index:: single: **; in function calls -In the same fashion, dictionaries can deliver keyword arguments with the ``**``\ --operator:: +In the same fashion, dictionaries can deliver keyword arguments with the +``**``\ -operator:: >>> def parrot(voltage, state='a stiff', action='voom'): ... print("-- This parrot wouldn't", action, end=' ') |