summaryrefslogtreecommitdiff
path: root/Doc/reference
diff options
context:
space:
mode:
authorAndrés Delfino <adelfino@gmail.com>2018-06-15 16:23:00 -0300
committerTerry Jan Reedy <tjreedy@udel.edu>2018-06-15 15:23:00 -0400
commit695118600fecaa7b95634e168ad7cbbc561fd1ec (patch)
tree0a68c3eb8017cb583cbccbbb35e79f60788cafb7 /Doc/reference
parent4fddd4e4069aad9efad999d8d9ce3cd9fb523a5c (diff)
downloadcpython-git-695118600fecaa7b95634e168ad7cbbc561fd1ec.tar.gz
bpo-33847: Add '@' operator entry to index (GH-7669)
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/expressions.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst
index 61bc912c3f..17f1f2c7b3 100644
--- a/Doc/reference/expressions.rst
+++ b/Doc/reference/expressions.rst
@@ -1139,7 +1139,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.