File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -253,13 +253,13 @@ PEP 488: Elimination of PYO files
253253---------------------------------
254254
255255:pep: `488 ` does away with the concept of ``.pyo `` files. This means that
256- ``.pyc `` files represent both unoptimized and optimized bytecode. To prevent
257- the need to constantly regenerate bytecode files, ``.pyc `` files now have an
258- optional ``opt- `` tag in their name when the bytecode is optimized. This has
259- the side-effect of no more bytecode file name clashes when running under either
260- ``-O `` or ``-OO ``, thus allowing unoptimized, ``-O ``, and `` -OO `` bytecode files
261- to all exist simultaneously. :func: `importlib.util.cache_from_source ` has an
262- updated API to help with this change.
256+ ``.pyc `` files represent both unoptimized and optimized bytecode. To prevent the
257+ need to constantly regenerate bytecode files, ``.pyc `` files now have an
258+ optional ``opt- `` tag in their name when the bytecode is optimized. This has the
259+ side-effect of no more bytecode file name clashes when running under either
260+ ``-O `` or ``-OO ``. Consequently, bytecode files generated from ``-O ``, and
261+ `` -OO `` may now exist simultaneously. :func: `importlib.util.cache_from_source `
262+ has an updated API to help with this change.
263263
264264.. seealso ::
265265
You can’t perform that action at this time.
0 commit comments