bpo-33847: Add '@' operator entry to index (GH-7669)

(cherry picked from commit 695118600f)

Co-authored-by: Andrés Delfino <adelfino@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-06-15 12:42:30 -07:00 committed by GitHub
parent 0113391e3f
commit c05c0e045c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -1144,7 +1144,9 @@ the other must be a sequence. In the former case, the numbers are converted to a
common type and then multiplied together. In the latter case, sequence
repetition is performed; a negative repetition factor yields an empty sequence.
.. index:: single: matrix multiplication
.. index::
single: matrix multiplication
operator: @
The ``@`` (at) operator is intended to be used for matrix multiplication. No
builtin Python types implement this operator.

View File

@ -0,0 +1 @@
Add '@' operator entry to index.