[Python-checkins] python/dist/src/Lib/test test_signal.py, 1.15, 1.16

arigo at users.sourceforge.net arigo at users.sourceforge.net
Sat Aug 7 23:27:45 CEST 2004


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

Modified Files:
	test_signal.py 
Log Message:
Let's not use string exceptions any more.


Index: test_signal.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_signal.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** test_signal.py	11 Jun 2004 18:09:28 -0000	1.15
--- test_signal.py	7 Aug 2004 21:27:43 -0000	1.16
***************
*** 30,34 ****
          print "handlerA", args
  
! HandlerBCalled = "HandlerBCalled"       # Exception
  
  def handlerB(*args):
--- 30,35 ----
          print "handlerA", args
  
! class HandlerBCalled(Exception):
!     pass
  
  def handlerB(*args):



More information about the Python-checkins mailing list