Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/RustPython/RustPython
/ foo
Method
foo
Lib/test/test_descr.py:2442–2446 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
2440
class
D(C):
2441
@C.foo.deleter
2442
def
foo(self):
2443
try
:
2444
del self._foo
2445
except
AttributeError:
2446
pass
2447
d = D()
2448
d.foo = 24
2449
self.assertEqual(d.foo, 24)
Callers
4
test_classmethods
Method · 0.95
test_staticmethods
Method · 0.95
test_classic
Method · 0.95
test_methods
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected