diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-09-09 00:28:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 00:28:02 (GMT) |
commit | 58de1dd6a8677bd213802c19204b827cb7134695 (patch) | |
tree | 05a0e8d57ce76a55f0817ec278435790dbb9ae22 /Misc | |
parent | 594f0ce73be807c0fecf958dc0644fa37983f5fe (diff) | |
download | cpython-58de1dd6a8677bd213802c19204b827cb7134695.zip cpython-58de1dd6a8677bd213802c19204b827cb7134695.tar.gz cpython-58de1dd6a8677bd213802c19204b827cb7134695.tar.bz2 |
bpo-41525: Make the Python program help ASCII-only (GH-21836)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-08-12-07-35-07.bpo-41525.d9q3XL.rst | 1 | ||||
-rw-r--r-- | Misc/python.man | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-08-12-07-35-07.bpo-41525.d9q3XL.rst b/Misc/NEWS.d/next/Core and Builtins/2020-08-12-07-35-07.bpo-41525.d9q3XL.rst new file mode 100644 index 0000000..acc00f8 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-08-12-07-35-07.bpo-41525.d9q3XL.rst @@ -0,0 +1 @@ +The output of ``python --help`` contains now only ASCII characters. diff --git a/Misc/python.man b/Misc/python.man index 74b2d72..2253765 100644 --- a/Misc/python.man +++ b/Misc/python.man @@ -291,7 +291,7 @@ Set implementation specific option. The following options are available: nested imports). Note that its output may be broken in multi-threaded application. Typical usage is python3 -X importtime -c 'import asyncio' - -X dev: enable CPython’s “development mode”, introducing additional runtime + -X dev: enable CPython's "development mode", introducing additional runtime checks which are too expensive to be enabled by default. It will not be more verbose than the default if the code is correct: new warnings are only emitted when an issue is detected. Effect of the developer mode: |