You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Require calling a _BoundMethodProxy to get the underlying callable.
Code that used to call `_proxy(...)` now needs to call `_proxy()(...)`.
Instead of catching a ReferenceError, that could be either raised by a
failure to dereference the proxy, or by the underlying callable, one can
now check that `_proxy()` does not return None (to distinguish between
the two cases).
This is the same design as the stdlib's WeakMethod.
0 commit comments