The standard library open function works both as a function:
f = open('file.txt')
print(type(f))
<type 'file'>
or as a context manager:
with open('file.txt') as f:
print(type(f))
<type 'file'>
I am trying to mimic this behaviour using contextlib.closing, where File is my custom file I/O class:
def myopen(filename):
f = File(filename)
f.open()
return closing(f)
this works as expected as a context manager:
with myopen('file.txt') as f:
print(type(f))
<class '__main__.File'>
but of course if I call directly, I get back the closing object instead of my object:
f = myopen(filename)
print(type(f))
<class 'contextlib.closing'>
So, how do I implement myopen so that it both works as a context manager and returns my File object when called directly?
Full working example on github: https://gist.github.com/1352573
closingis for. You useclosingwhen you write thewithto turn any object with aclosemethod into a context manager. You don't use it ahead of time. The example in thecontextlibdocs seems pretty clear. If you want to be able to turn it into a context manager at any time, then Zach's answer is correct. – agf Nov 9 '11 at 19:30