sanyaade-g2g-repos / python-on-a-chip

Automatically exported from code.google.com/p/python-on-a-chip
Other
0 stars 0 forks source link

Implement the simplest form of try/catch #252

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Issue #6 is being split into multiple steps.  This issue is the first step: to 
Implement the simplest form of try/catch::

n = 0
try:
    1 / n

except:
    print "exn"

Original issue reported on code.google.com by dwhall...@gmail.com on 21 Jun 2013 at 4:28

GoogleCodeExporter commented 8 years ago

Original comment by dwhall...@gmail.com on 21 Jun 2013 at 4:30