LocalProxy
.Parameters | |
f | The built-in function this attribute is accessed through. Instead of looking up the special method, the function call is redone on the object. |
fallback | Return this function if the proxy is unbound
instead of raising a RuntimeError . |
is_attr | This proxied name is an attribute, not a function. Call the fallback immediately to get the value. |
class_value | Value to return when accessed from the LocalProxy class directly. Used for __doc__ so building docs still works. |
Method | __call__ |
No summary |
Method | __get__ |
Undocumented |
Method | __init__ |
Undocumented |
Method | __repr__ |
Undocumented |
Method | __set_name__ |
Undocumented |
Class Variable | __slots__ |
Undocumented |
Instance Variable | bind_f |
Undocumented |
Instance Variable | class_value |
Undocumented |
Instance Variable | fallback |
Undocumented |
Instance Variable | is_attr |
Undocumented |
Instance Variable | name |
Undocumented |
Parameters | |
instance:LocalProxy | Undocumented |
*args:t.Any | Undocumented |
**kwargs:t.Any | Undocumented |
Returns | |
t.Any | Undocumented |
Undocumented
Parameters | |
instance:LocalProxy | Undocumented |
owner:t.Optional[ | Undocumented |
Returns | |
t.Any | Undocumented |
werkzeug.local._ProxyIOp
Undocumented
Parameters | |
f:t.Optional[ | Undocumented |
fallback:t.Optional[ | Undocumented |
class_value:t.Optional[ | Undocumented |
is_attr:bool | Undocumented |
Undocumented
Parameters | |
owner:LocalProxy | Undocumented |
name:str | Undocumented |