MCPcopy 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_classmethodsMethod · 0.95
test_staticmethodsMethod · 0.95
test_classicMethod · 0.95
test_methodsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected