diff options
| author | Brett Cannon <brett@python.org> | 2015-04-13 14:21:02 -0400 |
|---|---|---|
| committer | Brett Cannon <brett@python.org> | 2015-04-13 14:21:02 -0400 |
| commit | f299abdafa0f2b6eb7abae274861b19b361c96bc (patch) | |
| tree | afc3a2bf560e30c7725510eda3b57d71ceddba00 /Doc/using/cmdline.rst | |
| parent | a63cc212348e276c8ede32773313c60ff7fda651 (diff) | |
| download | cpython-git-f299abdafa0f2b6eb7abae274861b19b361c96bc.tar.gz | |
Issue #23731: Implement PEP 488.
The concept of .pyo files no longer exists. Now .pyc files have an
optional `opt-` tag which specifies if any extra optimizations beyond
the peepholer were applied.
Diffstat (limited to 'Doc/using/cmdline.rst')
| -rw-r--r-- | Doc/using/cmdline.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index f52afa0229..81cd38a533 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -199,7 +199,7 @@ Miscellaneous options .. cmdoption:: -B - If given, Python won't try to write ``.pyc`` or ``.pyo`` files on the + If given, Python won't try to write ``.pyc``` files on the import of source modules. See also :envvar:`PYTHONDONTWRITEBYTECODE`. |
