Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pointofpresence/71e988e3a17a7df44dd525387ec504fc to your computer and use it in GitHub Desktop.
Save pointofpresence/71e988e3a17a7df44dd525387ec504fc to your computer and use it in GitHub Desktop.
Python exception while using 'with' statement
try:
with open( "a.txt" ) as f :
print f.readlines()
except EnvironmentError: # parent of IOError, OSError *and* WindowsError where available
print 'oops'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment