{class foo(object):
def __enter__ (self):
print("Enter")
def __exit__(self,type,value,traceback):
print("Exit")
def method(self):
print("Method")
with foo() as instant:
instant.method()}
Execute this py file and console shows these message:
Enter
Exit
instant.method()
AttributeError: 'NoneType' object has no attribute 'method'
unable to find methods?