diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 22:20:13 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 22:20:13 +0100 |
commit | 53853c3fa960c34359c2721a28fdfae288b6cb0d (patch) | |
tree | 6e116694cf356c8e200ae8b99b918375dcab2189 /Lib/test | |
parent | 6392d7f68bbc11e3ad3417f52c93f33dcc0c4cd0 (diff) | |
download | cpython-git-53853c3fa960c34359c2721a28fdfae288b6cb0d.tar.gz |
Issue #13415: os.unsetenv() doesn't ignore errors anymore.
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_os.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 6435b61fdb..4e4956e953 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -361,6 +361,15 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol): value = popen.read().strip() self.assertEqual(value, "World") + def test_unset_error(self): + if sys.platform == "win32": + # an environment variable is limited to 32,767 characters + key = 'x' * 50000 + else: + # "=" is not allowed in a variable name + key = 'key=' + self.assertRaises(OSError, os.environ.__delitem__, key) + class WalkTests(unittest.TestCase): """Tests for os.walk().""" |