diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:23:23 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-22 21:23:23 (GMT) |
commit | cbbd562f00053fb8e5113e9f66a5efc43790d314 (patch) | |
tree | 57d1929d0bd898f612f28fb537f513ba5e884b78 /Lib/test | |
parent | 942d5ba125860112c42f3a8981778c80c23d5499 (diff) | |
parent | 65170954e0ca73396eea04307c62c20ce1ca7960 (diff) | |
download | cpython-cbbd562f00053fb8e5113e9f66a5efc43790d314.zip cpython-cbbd562f00053fb8e5113e9f66a5efc43790d314.tar.gz cpython-cbbd562f00053fb8e5113e9f66a5efc43790d314.tar.bz2 |
Merge branch default
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 b9e2f32..f95d286 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -447,6 +447,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().""" |