diff options
author | Georg Brandl <georg@python.org> | 2008-05-30 19:17:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-05-30 19:17:29 (GMT) |
commit | c5a235bb55ebaeb09e42e7ba78b0f8bfe32fd490 (patch) | |
tree | fc54ebfb472eeda32750caf36159f5a8203de689 | |
parent | 6bb7bcf5f74dab90e9aab65fc33dfb5819aa9a17 (diff) | |
download | cpython-c5a235bb55ebaeb09e42e7ba78b0f8bfe32fd490.zip cpython-c5a235bb55ebaeb09e42e7ba78b0f8bfe32fd490.tar.gz cpython-c5a235bb55ebaeb09e42e7ba78b0f8bfe32fd490.tar.bz2 |
Better quote with single quotes.
-rw-r--r-- | Doc/tutorial/interpreter.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tutorial/interpreter.rst b/Doc/tutorial/interpreter.rst index 5baf73d..c9ceaf6 100644 --- a/Doc/tutorial/interpreter.rst +++ b/Doc/tutorial/interpreter.rst @@ -51,8 +51,8 @@ and executes a *script* from that file. 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 best to quote *command* in its -entirety with double quotes. +characters that are special to the shell, it is usually advised to quote +*command* in its entirety with single quotes. 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 |