4337 links
Arnaud's links
Home
Login
RSS Feed
ATOM Feed
Tag cloud
Picture wall
Daily
Links per page:
20
50
100
page 1 / 1
1 results tagged
exception
x
Stupid Python Tricks: The KeyboardInterrupt Exception
catching all exception in python
import traceback
for record in database:
try:
blabla
except (KeyboardInterrupt, SystemExit):
raise
except Exception as e:
# report error and proceed
print(type(e).__name__)
print(e)
print(traceback.format_exc())
Ne pas oublier de raise si on veut re-raise
April 21, 2017 at 4:19:03 PM GMT+2 *
- permalink
-
-
http://effbot.org/zone/stupid-exceptions-keyboardinterrupt.htm
exception
python
Links per page:
20
50
100
page 1 / 1