mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
(Merge 3.2) Issue #13436: Fix unsetenv() test on Windows
This commit is contained in:
commit
9329029ed7
1 changed files with 2 additions and 1 deletions
|
|
@ -451,10 +451,11 @@ 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='
|
||||||
self.assertRaises(OSError, os.environ.__delitem__, key)
|
self.assertRaises(OSError, os.environ.__delitem__, key)
|
||||||
|
|
||||||
class WalkTests(unittest.TestCase):
|
class WalkTests(unittest.TestCase):
|
||||||
"""Tests for os.walk()."""
|
"""Tests for os.walk()."""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue