commit | 05212fc7f3eec1f56472d1d6ce5a82049e35f57b | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sat Sep 07 04:48:03 2002 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sat Sep 07 04:48:03 2002 +0000 |
tree | a33a1197ffde2ca26bebf51bfe02f222d9b30a99 | |
parent | 796e5f75e2b05aae96c488d094e38de7f1887897 [diff] |
Change UserDict to IterableUserDict
diff --git a/Lib/os.py b/Lib/os.py index 40f9a4e..1aadf1f 100644 --- a/Lib/os.py +++ b/Lib/os.py
@@ -410,7 +410,7 @@ 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