You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Copy file name to clipboardExpand all lines: Doc/library/sys.rst
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -167,7 +167,7 @@ always available.
167
167
168
168
.. data:: dont_write_bytecode
169
169
170
-
If this is true, Python won't try to write ``.pyc`` or ``.pyo`` files on the
170
+
If this is true, Python won't try to write ``.pyc`` files on the
171
171
import of source modules. This value is initially set to ``True`` or
172
172
``False`` depending on the :option:`-B` command line option and the
173
173
:envvar:`PYTHONDONTWRITEBYTECODE` environment variable, but you can set it
@@ -1231,4 +1231,3 @@ always available.
1231
1231
.. rubric:: Citations
1232
1232
1233
1233
.. [C99] ISO/IEC 9899:1999. "Programming languages -- C." A public draft of this standard is available at http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1256.pdf\ .
0 commit comments