MCPcopy Index your code
hub / github.com/RustPython/RustPython / meth

Method meth

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

Source from the content-addressed store, hash-verified

2697
2698 class F(E):
2699 def meth(self, a):
2700 s = self.__super # == mysuper(F, self)
2701 return "F(%r)[%s]" % (a, s.__class__.__name__) + s.meth(a)
2702 F._F__super = mysuper(F)
2703
2704 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