diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-05-27 02:40:28 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-05-27 02:40:28 (GMT) |
commit | e328323cf78ce912570f05efad43cdca2b445ed7 (patch) | |
tree | b527ad1edae0723d4285d56630e9088fb688557a | |
parent | 55871f04bf0ac1cf0c7b1efd82780b4bf979d4f0 (diff) | |
download | cpython-e328323cf78ce912570f05efad43cdca2b445ed7.zip cpython-e328323cf78ce912570f05efad43cdca2b445ed7.tar.gz cpython-e328323cf78ce912570f05efad43cdca2b445ed7.tar.bz2 |
rephrase
-rw-r--r-- | Doc/whatsnew/3.5.rst | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index 520bd0d..fa2b3e7 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -253,13 +253,13 @@ PEP 488: Elimination of PYO files --------------------------------- :pep:`488` does away with the concept of ``.pyo`` files. This means that -``.pyc`` files represent both unoptimized and optimized bytecode. To prevent -the need to constantly regenerate bytecode files, ``.pyc`` files now have an -optional ``opt-`` tag in their name when the bytecode is optimized. This has -the side-effect of no more bytecode file name clashes when running under either -``-O`` or ``-OO``, thus allowing unoptimized, ``-O``, and ``-OO`` bytecode files -to all exist simultaneously. :func:`importlib.util.cache_from_source` has an -updated API to help with this change. +``.pyc`` files represent both unoptimized and optimized bytecode. To prevent the +need to constantly regenerate bytecode files, ``.pyc`` files now have an +optional ``opt-`` tag in their name when the bytecode is optimized. This has the +side-effect of no more bytecode file name clashes when running under either +``-O`` or ``-OO``. Consequently, bytecode files generated from ``-O``, and +``-OO`` may now exist simultaneously. :func:`importlib.util.cache_from_source` +has an updated API to help with this change. .. seealso:: |