```python from lazy_object_proxy import Proxy import os def a(): return "." c = Proxy(a) os.path.exists(c) ```