]> granicus.if.org Git - python/commitdiff
rephrase
authorBenjamin Peterson <benjamin@python.org>
Wed, 27 May 2015 02:40:28 +0000 (21:40 -0500)
committerBenjamin Peterson <benjamin@python.org>
Wed, 27 May 2015 02:40:28 +0000 (21:40 -0500)
Doc/whatsnew/3.5.rst

index 520bd0d9fde76efa8bfdbec84953fa084ca4a72e..fa2b3e7a5220249b230f447bf0caf3caf9071146 100644 (file)
@@ -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::