Closed GoogleCodeExporter closed 9 years ago
See two blocks below:
code block 1:
#-----------------------
try:
a=1/0
except Exception:
print("Opps!")
x=100
#-----------------------
code block 2:
#------------------------
try:
a=1/0
except Exception:
print("Opps!")
x=100
#------------------------
Only block 1 output "Opps!". Block 2 output nothing, it seems that the "Exceute
Selection" think the "try...except" block unclosed.
Original comment by xiepeng...@gmail.com
on 6 Mar 2009 at 2:46
Fixed in version control.
Original comment by pyscripter
on 17 May 2009 at 11:16
Original comment by pyscripter
on 30 Sep 2010 at 3:09
Original issue reported on code.google.com by
xiepeng...@gmail.com
on 6 Mar 2009 at 2:09