python - Difference between except: and except Exception: -
is there difference between except:
, except exception:
?
can except
deal not exception?
as of python 2.5, there new baseexception
serve base class exception
. result, generatorexit inherents directly baseexception
caught except:
not except exception:
.
Comments
Post a Comment