Home
last modified time | relevance | path

Searched refs:matmul (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/test/
Dtest_type_comments.py35 matmul = """\ variable
272 for tree in self.parse_all(matmul, minver=5):
Dtest_operator.py216 self.assertRaises(TypeError, operator.matmul)
217 self.assertRaises(TypeError, operator.matmul, 42, 42)
/third_party/python/Lib/
Doperator.py108 def matmul(a, b): function
433 __matmul__ = matmul
/third_party/python/Doc/library/
Doperator.rst142 .. function:: matmul(a, b)
408 | Matrix Multiplication | ``a @ b`` | ``matmul(a, b)`` |
/third_party/python/Doc/whatsnew/
D3.5.rst1474 New :func:`~operator.matmul` and :func:`~operator.imatmul` functions
/third_party/python/Misc/
DNEWS24327 - bpo-23581: Add matmul support to MagicMock. Patch by Håkan Lövdahl.