Commit 05212fc7 authored by Raymond Hettinger's avatar Raymond Hettinger

Change UserDict to IterableUserDict

parent 796e5f75
...@@ -410,7 +410,7 @@ else: ...@@ -410,7 +410,7 @@ else:
return dict(self) return dict(self)
else: # Where Env Var Names Can Be Mixed Case else: # Where Env Var Names Can Be Mixed Case
class _Environ(UserDict.UserDict): class _Environ(UserDict.IterableUserDict):
def __init__(self, environ): def __init__(self, environ):
UserDict.UserDict.__init__(self) UserDict.UserDict.__init__(self)
self.data = environ self.data = environ
......
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