[Python-checkins] python/dist/src/Lib ConfigParser.py,1.53,1.54

nnorwitz@users.sourceforge.net nnorwitz@users.sourceforge.net
Mon, 30 Dec 2002 15:38:49 -0800


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

Modified Files:
	ConfigParser.py 
Log Message:
Add missing InterpolationSyntaxError.
XXX Not sure this is correct.



Index: ConfigParser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/ConfigParser.py,v
retrieving revision 1.53
retrieving revision 1.54
diff -C2 -d -r1.53 -r1.54
*** ConfigParser.py	17 Dec 2002 01:56:47 -0000	1.53
--- ConfigParser.py	30 Dec 2002 23:38:47 -0000	1.54
***************
*** 140,143 ****
--- 140,145 ----
          self.section = section
  
+ class InterpolationSyntaxError(Error): pass
+ 
  class InterpolationDepthError(Error):
      def __init__(self, option, section, rawval):