diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-03-11 05:02:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-11 05:02:52 (GMT) |
commit | 0710d754255e731e6fcc3f206b51db6156da17c8 (patch) | |
tree | f3d24f09ed0c3ba415d99a070d9cdc7bdd460123 /Modules/main.c | |
parent | 70ee0cd5c2a3dba82cb8e0c0742c012f9134c040 (diff) | |
download | cpython-0710d754255e731e6fcc3f206b51db6156da17c8.zip cpython-0710d754255e731e6fcc3f206b51db6156da17c8.tar.gz cpython-0710d754255e731e6fcc3f206b51db6156da17c8.tar.bz2 |
bpo-29770: remove outdated PYO related info (GH-590)
Diffstat (limited to 'Modules/main.c')
-rw-r--r-- | Modules/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/main.c b/Modules/main.c index 633e757..0951b3f 100644 --- a/Modules/main.c +++ b/Modules/main.c @@ -53,7 +53,7 @@ static const char usage_1[] = "\ Options and arguments (and corresponding environment variables):\n\ -b : issue warnings about str(bytes_instance), str(bytearray_instance)\n\ and comparing bytes/bytearray with str. (-bb: issue errors)\n\ --B : don't write .py[co] files on import; also PYTHONDONTWRITEBYTECODE=x\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\ -E : ignore PYTHON* environment variables (such as PYTHONPATH)\n\ |