isinstance(SystemExit(1), Exception)
превращается в True, но этот фрагмент печатает "caught by bare except SystemExit(1,)"
.
try:
sys.exit(0)
except Exception, e:
print 'caught by except Exception', str(e)
except:
print 'caught by bare except', repr(sys.exc_info()[1])
Моя среда тестирования - Python 2.6.