[Python-checkins] python/dist/src/Lib/plat-mac aetools.py,1.1,1.2

jvr@users.sourceforge.net jvr@users.sourceforge.net
Wed, 26 Feb 2003 07:28:20 -0800


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

Modified Files:
	aetools.py 
Log Message:
use bare raise so you get the original tb

Index: aetools.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/aetools.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** aetools.py	30 Dec 2002 22:04:20 -0000	1.1
--- aetools.py	26 Feb 2003 15:28:17 -0000	1.2
***************
*** 84,88 ****
  		except (AE.Error, MacOS.Error), msg:
  			if msg[0] != -1701 and msg[0] != -1704:
! 				raise sys.exc_type, sys.exc_value
  			continue
  		attributes[key] = unpack(desc, formodulename)
--- 84,88 ----
  		except (AE.Error, MacOS.Error), msg:
  			if msg[0] != -1701 and msg[0] != -1704:
! 				raise
  			continue
  		attributes[key] = unpack(desc, formodulename)