diff options
author | Xiang Zhang <angwerzx@126.com> | 2017-03-11 06:12:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-11 06:12:29 (GMT) |
commit | ce222c87706b1062f7fc03867d1867aa4848dd7b (patch) | |
tree | c01f84152ac1842011db6dc5a1ebc35fcce0edd8 /Doc/using | |
parent | 518d8fcb89896dd30fbf11c667ee4e6b509e4dd9 (diff) | |
download | cpython-ce222c87706b1062f7fc03867d1867aa4848dd7b.zip cpython-ce222c87706b1062f7fc03867d1867aa4848dd7b.tar.gz cpython-ce222c87706b1062f7fc03867d1867aa4848dd7b.tar.bz2 |
bpo-29770: remove outdated PYO related info (GH-590) (GH-613)
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/cmdline.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 6117796..906d31f 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -518,8 +518,8 @@ conflict. .. envvar:: PYTHONDONTWRITEBYTECODE - If this is set to a non-empty string, Python won't try to write ``.pyc`` or - ``.pyo`` files on the import of source modules. This is equivalent to + If this is set to a non-empty string, Python won't try to write ``.pyc`` + files on the import of source modules. This is equivalent to specifying the :option:`-B` option. |