MCPcopy Index your code
hub / github.com/python/cpython / meth

Method meth

Lib/test/test_descr.py:560–561  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

558 return "C" + self.__super.meth()
559 class D(C, B):
560 def meth(self):
561 return "D" + self.__super.meth()
562 self.assertEqual(D().meth(), "DCBA")
563 class E(B, C):
564 def meth(self):

Callers 1

test_mutable_basesMethod · 0.95

Calls 2

superClass · 0.85
methMethod · 0.45

Tested by

no test coverage detected