]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Change UserDict to IterableUserDict
authorRaymond Hettinger <python@rcn.com>
Sat, 7 Sep 2002 04:48:03 +0000 (04:48 +0000)
committerRaymond Hettinger <python@rcn.com>
Sat, 7 Sep 2002 04:48:03 +0000 (04:48 +0000)
Lib/os.py

index 40f9a4e2aad0b2dd350a506af703b22cad04bffe..1aadf1ff5997c1d7e3274e79a4ecc1535f33970b 100644 (file)
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -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