[Python-checkins] python/dist/src/Lib os.py,1.50.8.5,1.50.8.6

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Fri, 06 Sep 2002 21:49:11 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv9112

Modified Files:
      Tag: release22-maint
	os.py 
Log Message:
Change UserDict to IterableUserDict

Index: os.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/os.py,v
retrieving revision 1.50.8.5
retrieving revision 1.50.8.6
diff -C2 -d -r1.50.8.5 -r1.50.8.6
*** os.py	6 Sep 2002 19:35:22 -0000	1.50.8.5
--- os.py	7 Sep 2002 04:49:09 -0000	1.50.8.6
***************
*** 396,400 ****
  
      else:  # Where Env Var Names Can Be Mixed Case
!         class _Environ(UserDict.UserDict):
              def __init__(self, environ):
                  UserDict.UserDict.__init__(self)
--- 396,400 ----
  
      else:  # Where Env Var Names Can Be Mixed Case
!         class _Environ(UserDict.IterableUserDict):
              def __init__(self, environ):
                  UserDict.UserDict.__init__(self)