isinstance(SystemExit(1), Exception) evals для 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.