Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
Indexed
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ foo
Method
foo
Lib/test/test_descr.py:2537–2541 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
2535
class
D(C):
2536
@C.foo.deleter
2537
def
foo(self):
2538
try
:
2539
del self._foo
2540
except
AttributeError:
2541
pass
2542
d = D()
2543
d.foo = 24
2544
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