diff options
author | Guido van Rossum <guido@python.org> | 2001-09-05 18:43:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-09-05 18:43:35 (GMT) |
commit | 32aa5d2c0b1ee20fc5eaff85e3b9392f6973ff2d (patch) | |
tree | de4b3973dafa13f477ed57c4142448a6cc9c6f0e /Misc | |
parent | 03a3bb812a002119f139c57b902172ed6499c28d (diff) | |
download | cpython-32aa5d2c0b1ee20fc5eaff85e3b9392f6973ff2d.zip cpython-32aa5d2c0b1ee20fc5eaff85e3b9392f6973ff2d.tar.gz cpython-32aa5d2c0b1ee20fc5eaff85e3b9392f6973ff2d.tar.bz2 |
Describe -E (which was added to 2.2a2).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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. |