summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelle Zijlstra <jelle.zijlstra@gmail.com>2022-10-12 16:00:51 (GMT)
committerGitHub <noreply@github.com>2022-10-12 16:00:51 (GMT)
commit5f8ca1b7969f34ee09adb7b28337ebd920e6215a (patch)
tree2e7db7eb02dbdd343ea61f92f75a9c12c3965028
parentd09d2c7c916eb4007f57f2a39c1198004e916b51 (diff)
downloadcpython-5f8ca1b7969f34ee09adb7b28337ebd920e6215a.zip
cpython-5f8ca1b7969f34ee09adb7b28337ebd920e6215a.tar.gz
cpython-5f8ca1b7969f34ee09adb7b28337ebd920e6215a.tar.bz2
tutorial: remove "with single quotes" (#98204)
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.
-rw-r--r--Doc/tutorial/interpreter.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst
index 9bee046..b71c610 100644
--- a/Doc/tutorial/interpreter.rst
+++ b/Doc/tutorial/interpreter.rst
@@ -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