summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-11-22 21:16:17 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-11-22 21:16:17 (GMT)
commit65170954e0ca73396eea04307c62c20ce1ca7960 (patch)
treef6b0983f4eaba4f3af8de2efb37d643eb877fcd1 /Lib/test/test_os.py
parent02686751931e6cd267f60c65b59744c7dff50cd2 (diff)
parent60b385e81361f43720b45b750243b39ce420a673 (diff)
downloadcpython-65170954e0ca73396eea04307c62c20ce1ca7960.zip
cpython-65170954e0ca73396eea04307c62c20ce1ca7960.tar.gz
cpython-65170954e0ca73396eea04307c62c20ce1ca7960.tar.bz2
(Merge 3.2) Issue #13415: os.unsetenv() doesn't ignore errors anymore.
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r--Lib/test/test_os.py9
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()."""