Код: Выделить всё
try:
do_stuff()
except Exception as err:
print(Exception, err)
# I want to print the entire traceback here,
# not just the exception name and details
Подробнее здесь: https://stackoverflow.com/questions/370 ... g-the-prog
Код: Выделить всё
try:
do_stuff()
except Exception as err:
print(Exception, err)
# I want to print the entire traceback here,
# not just the exception name and details