From: Raymond Hettinger Date: Sat, 7 Sep 2002 04:49:09 +0000 (+0000) Subject: Change UserDict to IterableUserDict X-Git-Tag: v2.2.2b1~180 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9c1d3e46bbf8431802237ef4d88c4a09cc33fc57;p=thirdparty%2FPython%2Fcpython.git Change UserDict to IterableUserDict --- diff --git a/Lib/os.py b/Lib/os.py index a89c471fc60f..8a46b4145593 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -395,7 +395,7 @@ else: self[k] = v 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