Open
Description
I have run in to the following:
p = Proxy(..)
if p is None:
"""Always false"""
I don't know that there is a way to proxy is
(identity) but it would be nice to have a way to ensure the proxy is evaluated.
Now I'm using:
p = Proxy(..)
if p.__wrapped__ is None:
pass
But that looks a bit ugly? Any suggestions? Perhaps something in "utils.py" to force evaluation?
Thanks!
Metadata
Metadata
Assignees
Labels
No labels