MCPcopy 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_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