[Python-ideas] Idea

Terry Reedy tjreedy at udel.edu
Thu Aug 21 22:19:33 CEST 2014


On 8/21/2014 3:23 PM, Scott Blair wrote:
> Add continue to a try, except statement to continue where the code threw
> an error.

As a practical matter, the way to do this now is

try:
   <statement>
except SomeError:
   pass

Anything more has technical difficulties discussed by Paul More.

-- 
Terry Jan Reedy



More information about the Python-ideas mailing list