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

Method meth

Lib/test/test_descr.py:2793–2795  ·  view source on GitHub ↗
(self, a)

Source from the content-addressed store, hash-verified

2791
2792 class F(E):
2793 def meth(self, a):
2794 s = self.__super # == mysuper(F, self)
2795 return "F(%r)[%s]" % (a, s.__class__.__name__) + s.meth(a)
2796 F._F__super = mysuper(F)
2797
2798 self.assertEqual(F().meth(6), "F(6)[mysuper]E(6)D(6)C(6)B(6)A(6)")

Callers

nothing calls this directly

Calls 1

methMethod · 0.45

Tested by

no test coverage detected