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

Skip Montanaro python-dev@python.org
Wed, 5 Jul 2000 19:55:44 -0700


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

Modified Files:
	handler.py 
Log Message:
fix indentation in three docstrings


Index: handler.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/handler.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** handler.py	2000/06/29 19:34:54	1.1
--- handler.py	2000/07/06 02:55:41	1.2
***************
*** 27,39 ****
  
      def error(self, exception):
! 	"Handle a recoverable error."
          raise exception
  
      def fatalError(self, exception):
! 	"Handle a non-recoverable error."
          raise exception
  
      def warning(self, exception):
! 	"Handle a warning."   
          print exception
  
--- 27,39 ----
  
      def error(self, exception):
!         "Handle a recoverable error."
          raise exception
  
      def fatalError(self, exception):
!         "Handle a non-recoverable error."
          raise exception
  
      def warning(self, exception):
!         "Handle a warning."   
          print exception