From: Anthony Baxter Date: Tue, 3 Aug 2004 11:14:19 +0000 (+0000) Subject: nice tests dont leave little suprises in the environ X-Git-Tag: v2.4a2~43 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=afd5ce18143179b74129572d1df43f3643e35a08;p=python nice tests dont leave little suprises in the environ --- diff --git a/Lib/test/test_getopt.py b/Lib/test/test_getopt.py index 04708518a9..da535939d0 100644 --- a/Lib/test/test_getopt.py +++ b/Lib/test/test_getopt.py @@ -124,6 +124,7 @@ os.environ["POSIXLY_CORRECT"] = "1" opts, args = getopt.gnu_getopt(cmdline, 'ab:', ['alpha', 'beta=']) verify(opts == [('-a', '')]) verify(args == ['arg1', '-b', '1', '--alpha', '--beta=2']) +del os.environ["POSIXLY_CORRECT"] #------------------------------------------------------------------------------