[Python-checkins] CVS: python/dist/src/Lib/xml/sax _exceptions.py,1.1,1.2

Jeremy Hylton python-dev@python.org
Fri, 7 Jul 2000 13:57:44 -0700


Update of /cvsroot/python/python/dist/src/Lib/xml/sax
In directory slayer.i.sourceforge.net:/tmp/cvs-serv27642

Modified Files:
	_exceptions.py 
Log Message:
fix inconsistent use of tabs and spaces


Index: _exceptions.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/_exceptions.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** _exceptions.py	2000/06/29 19:34:54	1.1
--- _exceptions.py	2000/07/07 20:57:42	1.2
***************
*** 23,28 ****
  
      def getMessage(self):
! 	"Return a message for this exception."
! 	return self._msg
  
      def getException(self):
--- 23,28 ----
  
      def getMessage(self):
!         "Return a message for this exception."
!         return self._msg
  
      def getException(self):
***************
*** 61,79 ****
          
      def getColumnNumber(self):
! 	"""The column number of the end of the text where the exception
  	occurred."""
! 	return self._locator.getColumnNumber()
  
      def getLineNumber(self):
! 	"The line number of the end of the text where the exception occurred."
! 	return self._locator.getLineNumber()
  
      def getPublicId(self):
! 	"Get the public identifier of the entity where the exception occurred."
! 	return self._locator.getPublicId()
  
      def getSystemId(self):
! 	"Get the system identifier of the entity where the exception occurred."
! 	return self._locator.getSystemId()
  
      def __str__(self):
--- 61,79 ----
          
      def getColumnNumber(self):
!         """The column number of the end of the text where the exception
  	occurred."""
!         return self._locator.getColumnNumber()
  
      def getLineNumber(self):
!         "The line number of the end of the text where the exception occurred."
!         return self._locator.getLineNumber()
  
      def getPublicId(self):
!         "Get the public identifier of the entity where the exception occurred."
!         return self._locator.getPublicId()
  
      def getSystemId(self):
!         "Get the system identifier of the entity where the exception occurred."
!         return self._locator.getSystemId()
  
      def __str__(self):