]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
tutorial: remove "with single quotes" (#98204)
authorJelle Zijlstra <jelle.zijlstra@gmail.com>
Wed, 12 Oct 2022 16:00:51 +0000 (09:00 -0700)
committerGitHub <noreply@github.com>
Wed, 12 Oct 2022 16:00:51 +0000 (09:00 -0700)
Closes #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.

Doc/tutorial/interpreter.rst

index 9bee046809eb248632b0644c71dadfb363796376..b71c61089e6dc196d18a2005296226ac5367e92c 100644 (file)
@@ -52,7 +52,7 @@ A second way of starting the interpreter is ``python -c command [arg] ...``,
 which executes the statement(s) in *command*, analogous to the shell's
 :option:`-c` option.  Since Python statements often contain spaces or other
 characters that are special to the shell, it is usually advised to quote
-*command* in its entirety with single quotes.
+*command* in its entirety.
 
 Some Python modules are also useful as scripts.  These can be invoked using
 ``python -m module [arg] ...``, which executes the source file for *module* as