Change UserDict to IterableUserDict

This commit is contained in:
Raymond Hettinger 2002-09-07 04:48:03 +00:00
parent 796e5f75e2
commit 05212fc7f3

View file

@ -410,7 +410,7 @@ else:
return dict(self)
else: # Where Env Var Names Can Be Mixed Case
class _Environ(UserDict.UserDict):
class _Environ(UserDict.IterableUserDict):
def __init__(self, environ):
UserDict.UserDict.__init__(self)
self.data = environ