You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I have a function that loads stuff from a file and each line can throw some sort of exception. I can't handle the exception without adding try to every single line and checking last exception after each.
Describe the solution you'd like
new section
try:
# code
if last exception is set:
or, function support try function()
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I have a function that loads stuff from a file and each line can throw some sort of exception. I can't handle the exception without adding
try
to every single line and checking last exception after each.Describe the solution you'd like
new section
or, function support
try function()
The text was updated successfully, but these errors were encountered: