From: Raymond Hettinger Date: Sat, 7 Sep 2002 04:48:03 +0000 (+0000) Subject: Change UserDict to IterableUserDict X-Git-Tag: v2.3c1~4176 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05212fc7f3eec1f56472d1d6ce5a82049e35f57b;p=thirdparty%2FPython%2Fcpython.git Change UserDict to IterableUserDict --- diff --git a/Lib/os.py b/Lib/os.py index 40f9a4e2aad0..1aadf1ff5997 100644 --- 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