diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-12-02 22:01:23 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-02 22:01:23 (GMT) |
| commit | 9b34f34aa929941576a69a6f7de77f1fb0b96ed6 (patch) | |
| tree | 00006c459645fd5fc0f51c3b6ed5965f28b36abe /Python/initconfig.c | |
| parent | ed4614386f210964840daa1f7cbddbbd575f7a49 (diff) | |
| download | cpython-9b34f34aa929941576a69a6f7de77f1fb0b96ed6.zip cpython-9b34f34aa929941576a69a6f7de77f1fb0b96ed6.tar.gz cpython-9b34f34aa929941576a69a6f7de77f1fb0b96ed6.tar.bz2 | |
bpo-42521: Add note about 'Python -d' only working on debug builds (GH-23607)
(cherry picked from commit 99b594404d364b363c184f48338d6ee81bee26dd)
Co-authored-by: Pablo Galindo <Pablogsal@gmail.com>
Diffstat (limited to 'Python/initconfig.c')
| -rw-r--r-- | Python/initconfig.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/initconfig.c b/Python/initconfig.c index e882a1f..3caed38 100644 --- a/Python/initconfig.c +++ b/Python/initconfig.c @@ -42,7 +42,8 @@ Options and arguments (and corresponding environment variables):\n\ and comparing bytes/bytearray with str. (-bb: issue errors)\n\ -B : don't write .pyc files on import; also PYTHONDONTWRITEBYTECODE=x\n\ -c cmd : program passed in as string (terminates option list)\n\ --d : debug output from parser; also PYTHONDEBUG=x\n\ +-d : turn on parser debugging output (for experts only, only works on\n\ + debug builds); also PYTHONDEBUG=x\n\ -E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\ -h : print this help message and exit (also --help)\n\ "; |
