Searched refs:matmul (Results 1 – 6 of 6) sorted by relevance
35 matmul = """\ variable272 for tree in self.parse_all(matmul, minver=5):
216 self.assertRaises(TypeError, operator.matmul)217 self.assertRaises(TypeError, operator.matmul, 42, 42)
108 def matmul(a, b): function433 __matmul__ = matmul
142 .. function:: matmul(a, b)408 | Matrix Multiplication | ``a @ b`` | ``matmul(a, b)`` |
1474 New :func:`~operator.matmul` and :func:`~operator.imatmul` functions
24327 - bpo-23581: Add matmul support to MagicMock. Patch by Håkan Lövdahl.