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

Method t

Lib/test/test_functools.py:2798–2799  ·  view source on GitHub ↗
(self, arg)

Source from the content-addressed store, hash-verified

2796 class A:
2797 @functools.singledispatchmethod
2798 def t(self, arg):
2799 self.arg = "base"
2800 @t.register(int)
2801 def _(self, arg):
2802 self.arg = "int"

Calls 1

clsClass · 0.50

Tested by

no test coverage detected