[Python-checkins] CVS: python/dist/src/Lib ConfigParser.py,1.37,1.38

Tim Peters tim_one@users.sourceforge.net
Thu, 18 Oct 2001 14:57:39 -0700


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

Modified Files:
	ConfigParser.py 
Log Message:
Whitespace normalization.


Index: ConfigParser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/ConfigParser.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** ConfigParser.py	2001/10/04 19:58:46	1.37
--- ConfigParser.py	2001/10/18 21:57:37	1.38
***************
*** 310,314 ****
          states = {'1': 1, 'yes': 1, 'true': 1, 'on': 1,
                    '0': 0, 'no': 0, 'false': 0, 'off': 0}
!         v = self.get(section, option)       
          if not states.has_key(v.lower()):
              raise ValueError, 'Not a boolean: %s' % v
--- 310,314 ----
          states = {'1': 1, 'yes': 1, 'true': 1, 'on': 1,
                    '0': 0, 'no': 0, 'false': 0, 'off': 0}
!         v = self.get(section, option)
          if not states.has_key(v.lower()):
              raise ValueError, 'Not a boolean: %s' % v