[Python-checkins] python/dist/src/Lib/xml/sax _exceptions.py, 1.10, 1.11

tim_one at users.sourceforge.net tim_one at users.sourceforge.net
Sun Jul 18 08:14:52 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/xml/sax
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31286/xml/sax

Modified Files:
	_exceptions.py 
Log Message:
Whitespace normalization, via reindent.py.


Index: _exceptions.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/_exceptions.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** _exceptions.py	20 Mar 2004 08:15:30 -0000	1.10
--- _exceptions.py	18 Jul 2004 06:14:50 -0000	1.11
***************
*** 94,101 ****
          linenum = self.getLineNumber()
          if linenum is None:
!            linenum = "?"
          colnum = self.getColumnNumber()
          if colnum is None:
!            colnum = "?"
          return "%s:%s:%s: %s" % (sysid, linenum, colnum, self._msg)
  
--- 94,101 ----
          linenum = self.getLineNumber()
          if linenum is None:
!             linenum = "?"
          colnum = self.getColumnNumber()
          if colnum is None:
!             colnum = "?"
          return "%s:%s:%s: %s" % (sysid, linenum, colnum, self._msg)
  



More information about the Python-checkins mailing list