[Python-checkins] cpython (3.2): State explicitely that PYTHONDONTWRITEBYTECODE is equivalent to -B

eric.araujo python-checkins at python.org
Thu Nov 3 16:45:48 CET 2011


http://hg.python.org/cpython/rev/64ac030fd5d5
changeset:   73320:64ac030fd5d5
branch:      3.2
user:        Éric Araujo <merwok at netwok.org>
date:        Thu Nov 03 03:20:43 2011 +0100
summary:
  State explicitely that PYTHONDONTWRITEBYTECODE is equivalent to -B

files:
  Doc/using/cmdline.rst |  3 ++-
  1 files changed, 2 insertions(+), 1 deletions(-)


diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -453,7 +453,8 @@
 .. envvar:: PYTHONDONTWRITEBYTECODE
 
    If this is set, Python won't try to write ``.pyc`` or ``.pyo`` files on the
-   import of source modules.
+   import of source modules.  This is equivalent to specifying the :option:`-B`
+   option.
 
 
 .. envvar:: PYTHONIOENCODING

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list