class documentation
class _RestrictedProxyLookup: (source)
Known subclasses: temporalio.worker.workflow_sandbox._restrictions._RestrictedProxyIOp
Constructor: _RestrictedProxyLookup(access_func, fallback_func, class_value, is_attr)
Undocumented
| Method | __call__ |
Support calling unbound methods from the class. For example, this happens with copy.copy, which does type(x).__copy__(x). type(x) can't be proxied, so it returns the proxy type and descriptor. |
| Method | __get__ |
Undocumented |
| Method | __init__ |
Undocumented |
| Method | __repr__ |
Undocumented |
| Method | __set |
Undocumented |
| Instance Variable | bind |
Undocumented |
| Instance Variable | class |
Undocumented |
| Instance Variable | fallback |
Undocumented |
| Instance Variable | is |
Undocumented |
| Instance Variable | name |
Undocumented |
Support calling unbound methods from the class. For example, this happens with copy.copy, which does type(x).__copy__(x). type(x) can't be proxied, so it returns the proxy type and descriptor.
def __init__(self, access_func:
Callable | None = None, *, fallback_func: Callable | None = None, class_value: Any | None = None, is_attr: bool = False):
(source)
¶
Undocumented