diff options
author | Raymond Hettinger <python@rcn.com> | 2002-09-07 04:48:03 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2002-09-07 04:48:03 (GMT) |
commit | 05212fc7f3eec1f56472d1d6ce5a82049e35f57b (patch) | |
tree | a33a1197ffde2ca26bebf51bfe02f222d9b30a99 /Lib/os.py | |
parent | 796e5f75e2b05aae96c488d094e38de7f1887897 (diff) | |
download | cpython-05212fc7f3eec1f56472d1d6ce5a82049e35f57b.zip cpython-05212fc7f3eec1f56472d1d6ce5a82049e35f57b.tar.gz cpython-05212fc7f3eec1f56472d1d6ce5a82049e35f57b.tar.bz2 |
Change UserDict to IterableUserDict
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |