mirror of
https://github.com/python/cpython.git
synced 2025-08-31 14:07:50 +00:00
Change UserDict to IterableUserDict
This commit is contained in:
parent
796e5f75e2
commit
05212fc7f3
1 changed files with 1 additions and 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue