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

Method __mul__

Lib/test/test_numeric_tower.py:21–22  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

19 """Dummy Integral class to test conversion of the Rational to float."""
20
21 def __mul__(self, other):
22 return DummyIntegral(super().__mul__(other))
23 __rmul__ = __mul__
24
25 def __truediv__(self, other):

Callers

nothing calls this directly

Calls 2

DummyIntegralClass · 0.85
superClass · 0.85

Tested by

no test coverage detected