diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:22:26 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:22:26 (GMT) |
commit | 896f4714f4df78f136ebcd07f543152e73657e4d (patch) | |
tree | 32998c296ef8a78157efa635c18e3af2032d7040 /Lib/test | |
parent | 5e8f8104116edfcbfee2690a58391830bd9883ae (diff) | |
parent | 60b385e81361f43720b45b750243b39ce420a673 (diff) | |
download | cpython-896f4714f4df78f136ebcd07f543152e73657e4d.zip cpython-896f4714f4df78f136ebcd07f543152e73657e4d.tar.gz cpython-896f4714f4df78f136ebcd07f543152e73657e4d.tar.bz2 |
Merge branch 3.2
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 efa28ea..d06f08e 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -423,6 +423,15 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol): value_str = value.decode(sys.getfilesystemencoding(), 'surrogateescape') self.assertEqual(os.environ['bytes'], value_str) + 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().""" |