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 /Python/initconfig.c | |
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 'Python/initconfig.c')
-rw-r--r-- | Python/initconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/initconfig.c b/Python/initconfig.c index 6428676..38d64b6 100644 --- a/Python/initconfig.c +++ b/Python/initconfig.c @@ -83,7 +83,7 @@ static const char usage_3[] = "\ cumulative time (including nested imports) and self time (excluding\n\ nested imports). Note that its output may be broken in multi-threaded\n\ application. Typical usage is python3 -X importtime -c 'import asyncio'\n\ - -X dev: enable CPython’s “development mode”, introducing additional runtime\n\ + -X dev: enable CPython's \"development mode\", introducing additional runtime\n\ checks which are too expensive to be enabled by default. Effect of the\n\ developer mode:\n\ * Add default warning filter, as -W default\n\ |