Skip to content
Open
7 changes: 4 additions & 3 deletions Doc/using/cmdline.rst
Original file line number Diff line number Diff line change
Expand Up @@ -880,9 +880,10 @@ conflict.

.. envvar:: PYTHONDONTWRITEBYTECODE

If this is set to a non-empty string, Python won't try to write ``.pyc``
files on the import of source modules. This is equivalent to
specifying the :option:`-B` option.
If this is set to a non-empty string other than ``0``, Python won't try to write
``.pyc`` files on the import of source modules. Setting it to ``0`` does
not disable bytecode writing. This is equivalent to specifying the
Comment on lines +884 to +885
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why add "Setting it to 0 does not disable bytecode writing," it is already implied by the first sentence ("other than 0"), no?

:option:`-B` option.


.. envvar:: PYTHONPYCACHEPREFIX
Expand Down
Loading