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 /Doc/using | |
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 '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 195f63f..08dc311 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -532,8 +532,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. |