diff options
author | Brett Cannon <brett@python.org> | 2015-04-13 18:21:02 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2015-04-13 18:21:02 (GMT) |
commit | f299abdafa0f2b6eb7abae274861b19b361c96bc (patch) | |
tree | afc3a2bf560e30c7725510eda3b57d71ceddba00 /Doc/using/windows.rst | |
parent | a63cc212348e276c8ede32773313c60ff7fda651 (diff) | |
download | cpython-f299abdafa0f2b6eb7abae274861b19b361c96bc.zip cpython-f299abdafa0f2b6eb7abae274861b19b361c96bc.tar.gz cpython-f299abdafa0f2b6eb7abae274861b19b361c96bc.tar.bz2 |
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/windows.rst')
-rw-r--r-- | Doc/using/windows.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index f194802..7113dfa 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -111,7 +111,7 @@ of available options is shown below. | | launcher is also installed. | | +---------------------------+--------------------------------------+--------------------------+ | CompileAll | Compile all ``.py`` files to | 0 | -| | ``.pyc`` and ``.pyo``. | | +| | ``.pyc``. | | +---------------------------+--------------------------------------+--------------------------+ | PrependPath | Add install and Scripts directories | 0 | | | tho :envvar:`PATH` and ``.PY`` to | | @@ -451,7 +451,7 @@ From file associations ^^^^^^^^^^^^^^^^^^^^^^ The launcher should have been associated with Python files (i.e. ``.py``, -``.pyw``, ``.pyc``, ``.pyo`` files) when it was installed. This means that +``.pyw``, ``.pyc`` files) when it was installed. This means that when you double-click on one of these files from Windows explorer the launcher will be used, and therefore you can use the same facilities described above to have the script specify the version which should be used. @@ -796,5 +796,3 @@ Other resources :pep:`397` - Python launcher for Windows The proposal for the launcher to be included in the Python distribution. - - |