私は最近 python を学び始め、withステートメントにたどり着きました。クラスインスタンスで使用しようとしましたが、何か間違っていると思います。コードは次のとおりです。
from __future__ import with_statement
import pdb
class Geo:
def __init__(self,text):
self.text = text
def __enter__(self):
print "entering"
def __exit__(self,exception_type,exception_value,exception_traceback):
print "exiting"
def ok(self):
print self.text
def __get(self):
return self.text
with Geo("line") as g :
g.ok()
問題は、インタープリターがwith ステートメント内のokメソッドに到達すると、次の例外が発生することです。
Traceback (most recent call last):
File "dec.py", line 23, in
g.ok()
AttributeError: 'NoneType' object has no attribute 'ok'
g オブジェクトの型が NoneType なのはなぜですか? withステートメントでインスタンスを使用するにはどうすればよいですか?