Commit ca2f537e authored by Raymond Hettinger's avatar Raymond Hettinger

Have os.environ() inherit from the iterable version of UserDict.

Closes SF bug 605731.
parent 44c42b9c
......@@ -377,7 +377,7 @@ else:
from riscosenviron import _Environ
elif name in ('os2', 'nt', 'dos'): # Where Env Var Names Must Be UPPERCASE
# But we store them as upper case
class _Environ(UserDict.UserDict):
class _Environ(UserDict.IterableUserDict):
def __init__(self, environ):
UserDict.UserDict.__init__(self)
data = self.data
......
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