[Python-checkins] python/dist/src/Lib os.py,1.61,1.62

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


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

Modified Files:
	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.61
retrieving revision 1.62
diff -C2 -d -r1.61 -r1.62
*** os.py	6 Sep 2002 19:36:31 -0000	1.61
--- os.py	7 Sep 2002 04:48:03 -0000	1.62
***************
*** 411,415 ****
  
      else:  # Where Env Var Names Can Be Mixed Case
!         class _Environ(UserDict.UserDict):
              def __init__(self, environ):
                  UserDict.UserDict.__init__(self)
--- 411,415 ----
  
      else:  # Where Env Var Names Can Be Mixed Case
!         class _Environ(UserDict.IterableUserDict):
              def __init__(self, environ):
                  UserDict.UserDict.__init__(self)