mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
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.
This commit is contained in:
parent
a63cc21234
commit
f299abdafa
56 changed files with 4731 additions and 4621 deletions
|
@ -646,7 +646,7 @@ path entry finder that knows how to handle that particular kind of path.
|
|||
|
||||
The default set of path entry finders implement all the semantics for finding
|
||||
modules on the file system, handling special file types such as Python source
|
||||
code (``.py`` files), Python byte code (``.pyc`` and ``.pyo`` files) and
|
||||
code (``.py`` files), Python byte code (``.pyc`` files) and
|
||||
shared libraries (e.g. ``.so`` files). When supported by the :mod:`zipimport`
|
||||
module in the standard library, the default path entry finders also handle
|
||||
loading all of these file types (other than shared libraries) from zipfiles.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue