nice tests dont leave little suprises in the environ
diff --git a/Lib/test/test_getopt.py b/Lib/test/test_getopt.py
index 0470851..da53593 100644
--- a/Lib/test/test_getopt.py
+++ b/Lib/test/test_getopt.py
@@ -124,6 +124,7 @@
 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"] 
 
 #------------------------------------------------------------------------------