Commit 5c80d25f authored by Victor Stinner's avatar Victor Stinner

(Merge 3.2) Issue #13436: Fix unsetenv() test on Windows

parents 2172adf9 898641a8
...@@ -451,6 +451,7 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol): ...@@ -451,6 +451,7 @@ class EnvironTests(mapping_tests.BasicTestMappingProtocol):
if sys.platform == "win32": if sys.platform == "win32":
# an environment variable is limited to 32,767 characters # an environment variable is limited to 32,767 characters
key = 'x' * 50000 key = 'x' * 50000
self.assertRaises(ValueError, os.environ.__delitem__, key)
else: else:
# "=" is not allowed in a variable name # "=" is not allowed in a variable name
key = 'key=' key = 'key='
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment