vote up 4 vote down star
1

Hello,

To my shame, I can't figure out how to handle exception for python 'with' statement. If I have a code:

with open("a.txt") as f:
    print f.readlines()

I really want to handle 'file not found exception' in order to do somehing. But I can't write

with open("a.txt") as f:
    print f.readlines()
except:
    print 'oops'

and can't write

with open("a.txt") as f:
    print f.readlines()
else:
    print 'oops'

enclosing 'with' in a try/except statement doesn't work else: exception is not raised. What can I do in order to process failure inside 'with' statement in a Pythonic way?

flag

Please, don't put an extra space before colon - it looks ugly and contradicts to PEP-8 (see section "Whitespace in Expressions and Statements") – Eugene Morozov Apr 4 at 8:07

4 Answers

vote up 21 vote down check
from __future__ import with_statement

try:
    with open( "a.txt" ) as f :
        print f.readlines()
except EnvironmentError: # parent of IOError, OSError *and* WindowsError where available
    print 'oops'
link|flag
thanks, it was a method redifinition bug ^_^. Actually works. – Eye of Hell Apr 3 at 13:30
1  
Could also generate an OSError. – MizardX Apr 3 at 13:37
1  
MizardX: it also can generate a WindowsError, ergo the edit :) – ΤΖΩΤΖΙΟΥ Apr 3 at 20:07
Looks good to me... – Douglas Leeder Apr 3 at 20:30
ΤΖΩΤΖΙΟΥ: WindowsError is a subclass of OSError. But EnvironmentError will do. – MizardX Apr 5 at 0:11
vote up 2 vote down

This code works fine in python 2.5.1:

from __future__ import with_statement

try:
    with open('non-existent.txt') as f:
        print f.readlines()
except:
    print "Exception"
link|flag
-1: bare except is always a bad idea, this really shouldn't be given as example to a newbie. – nosklo Apr 3 at 20:34
vote up -7 vote down

Hi Eye of Hell,

I looked up something for you that might help you a bit further:

with open("x.txt") as f:
    data = f.read()
    do something with data

Greetings,

Younes

link|flag
-1: Doesn't answer the OP's question. – MizardX Apr 3 at 13:31
fix the white space plz – hasen j Apr 3 at 13:59
-1: not an answer – nosklo Apr 3 at 20:35
vote up 2 vote down

I just tried, enclosing the with in a try/except works fine.

try:
  with open("dummy.txt", "r") as f:
    print(f.readlines())
except:
  print("oops")
link|flag
-1: bare except is always a bad idea, this really shouldn't be given as example to a newbie. – nosklo Apr 3 at 20:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.