MCPcopy Create free account
hub / github.com/ActiveState/code / recipe-496741.py

File recipe-496741.py

recipes/Python/496741_Object_Proxying/recipe-496741.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1class Proxy(object):
2 __slots__ = ["_obj", "__weakref__"]
3 def __init__(self, obj):
4 object.__setattr__(self, "_obj", obj)

Callers

nothing calls this directly

Calls 7

dirFunction · 0.85
listClass · 0.85
ProxyClass · 0.70
appendMethod · 0.45
sortMethod · 0.45
extendMethod · 0.45
__getattribute__Method · 0.45

Tested by

no test coverage detected