Exception handling syntax: Difference between revisions

Content deleted Content added
Perl 5: http://mvp.kablamo.org/essentials/die-eval/ instead
Python: file() is deprecated, the documentation recommends open()
Line 882:
f = None
try:
f = fileopen("aFileName", "w")
f.write(could_make_error())
except IOError: