This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Small typo in Json docs
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: docs@python Nosy List: Andrew Morozko, SilentGhost, docs@python, zach.ware
Priority: normal Keywords:

Created on 2016-09-14 15:57 by Andrew Morozko, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg276467 - (view) Author: Andrew Morozko (Andrew Morozko) Date: 2016-09-14 15:57
In Json module, example titled "Using json.tool from the shell to validate and pretty-print:"
5th line reads:
echo '{1.2:3.4}' | python -mjson.tool
should
echo '{1.2:3.4}' | python -m json.tool
msg276468 - (view) Author: SilentGhost (SilentGhost) * (Python triager) Date: 2016-09-14 16:02
The space between -m switch and module name is not mandatory as you should be able to see if you run those examples.
msg276469 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2016-09-14 16:16
See 05e8b25379a3, though; it may be worth a backport.  Not to 3.3, though; it's docs are not being updated anymore.
History
Date User Action Args
2022-04-11 14:58:36adminsetgithub: 72342
2016-09-14 16:16:45zach.waresetnosy: + zach.ware

messages: + msg276469
versions: - Python 3.3
2016-09-14 16:02:36SilentGhostsetstatus: open -> closed
2016-09-14 16:02:20SilentGhostsetnosy: + SilentGhost
messages: + msg276468

resolution: not a bug
stage: resolved
2016-09-14 15:57:28Andrew Morozkocreate