Skip to content

Commit 2ed28a6

Browse files
miss-islingtonJelleZijlstra
andauthoredOct 12, 2022
tutorial: remove "with single quotes" (GH-98204)
Closes GH-91856. On Windows double quotes are sometimes better, on Unix usually single quotes. It's not our place to explain that, so just don't. (cherry picked from commit 5f8ca1b) Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
1 parent bd73110 commit 2ed28a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Doc/tutorial/interpreter.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ A second way of starting the interpreter is ``python -c command [arg] ...``,
5252
which executes the statement(s) in *command*, analogous to the shell's
5353
:option:`-c` option. Since Python statements often contain spaces or other
5454
characters that are special to the shell, it is usually advised to quote
55-
*command* in its entirety with single quotes.
55+
*command* in its entirety.
5656

5757
Some Python modules are also useful as scripts. These can be invoked using
5858
``python -m module [arg] ...``, which executes the source file for *module* as

0 commit comments

Comments
 (0)
Please sign in to comment.