summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorwim glenn <hey@wimglenn.com>2019-12-06 06:44:01 (GMT)
committerInada Naoki <songofacandy@gmail.com>2019-12-06 06:44:01 (GMT)
commitefefe25443c56988841ab96cdac01352123ba268 (patch)
tree7154408936969702c8e86a8e8fd9dbf2985fa9fe /Doc
parentd863ade0c7fa4826e8b71aa467809c83a711f019 (diff)
downloadcpython-efefe25443c56988841ab96cdac01352123ba268.zip
cpython-efefe25443c56988841ab96cdac01352123ba268.tar.gz
cpython-efefe25443c56988841ab96cdac01352123ba268.tar.bz2
bpo-27413: json.tool: Add --no-ensure-ascii option. (GH-17472)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/json.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/json.rst b/Doc/library/json.rst
index 23e39e9..573ec1c 100644
--- a/Doc/library/json.rst
+++ b/Doc/library/json.rst
@@ -732,6 +732,12 @@ Command line options
.. versionadded:: 3.5
+.. cmdoption:: --no-ensure-ascii
+
+ Disable escaping of non-ascii characters, see :func:`json.dumps` for more information.
+
+ .. versionadded:: 3.9
+
.. cmdoption:: --json-lines
Parse every input line as separate JSON object.