Update of /cvsroot/pywin32/pywin32/win32/test
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv23203/win32/test
Modified Files:
testall.py
Log Message:
catch all errors while checking modules import
Index: testall.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/test/testall.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** testall.py 26 Nov 2008 08:56:33 -0000 1.8
--- testall.py 6 Dec 2008 00:46:46 -0000 1.9
***************
*** 72,76 ****
try:
__import__(base)
! except ImportError:
print "FAILED to import", name
raise
--- 72,76 ----
try:
__import__(base)
! except:
print "FAILED to import", name
raise
|