]> granicus.if.org Git - python/commitdiff
Describe -E (which was added to 2.2a2).
authorGuido van Rossum <guido@python.org>
Wed, 5 Sep 2001 18:43:35 +0000 (18:43 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 5 Sep 2001 18:43:35 +0000 (18:43 +0000)
Misc/NEWS

index a4d739517a16edb86c054473aa4121256750ab3c..02d49687604fc36d43c29899dee3e9d83a4f5b49 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -221,6 +221,13 @@ Core
   to a dictionary object.  Getting func.__dict__ before any attributes
   have been assigned now returns an empty dictionary instead of None.
 
+- A new command line option, -E, was added which disables the use of
+  all environment variables, or at least those that are specifically
+  significant to Python.  Usually those have a name starting with
+  "PYTHON".  This was used to fix a problem where the tests fail if
+  the user happens to have PYTHONHOME or PYTHONPATH pointing to an
+  older distribution.
+
 Library
 
 - New class Differ and new functions ndiff() and restore() in difflib.py.