[Python-checkins] cpython (3.4): Using "-m module" is easier to read and understand than "-mmodule".

georg.brandl python-checkins at python.org
Tue Oct 28 22:54:50 CET 2014


https://hg.python.org/cpython/rev/05e8b25379a3
changeset:   93206:05e8b25379a3
branch:      3.4
parent:      93203:cebbfc5194b9
user:        Georg Brandl <georg at python.org>
date:        Tue Oct 28 22:54:24 2014 +0100
summary:
  Using "-m module" is easier to read and understand than "-mmodule".

files:
  Doc/library/json.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/library/json.rst b/Doc/library/json.rst
--- a/Doc/library/json.rst
+++ b/Doc/library/json.rst
@@ -97,11 +97,11 @@
 
 Using json.tool from the shell to validate and pretty-print::
 
-    $ echo '{"json":"obj"}' | python -mjson.tool
+    $ echo '{"json":"obj"}' | python -m json.tool
     {
         "json": "obj"
     }
-    $ echo '{1.2:3.4}' | python -mjson.tool
+    $ echo '{1.2:3.4}' | python -m json.tool
     Expecting property name enclosed in double quotes: line 1 column 2 (char 1)
 
 .. highlight:: python3

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list