From 5e134aaefd29a937117f0fb0d3df42ea884773c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Fri, 15 Jun 2018 16:23:00 -0300 Subject: [PATCH] bpo-33847: Add '@' operator entry to index (GH-7669) (cherry picked from commit 695118600fecaa7b95634e168ad7cbbc561fd1ec) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Andrés Delfino --- Doc/reference/expressions.rst | 4 +++- .../Documentation/2018-06-15-14-58-45.bpo-33847.IIDp6t.rst | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 Misc/NEWS.d/next/Documentation/2018-06-15-14-58-45.bpo-33847.IIDp6t.rst diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index ad8613b0bc271b5..83cf7385ac70bac 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -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. diff --git a/Misc/NEWS.d/next/Documentation/2018-06-15-14-58-45.bpo-33847.IIDp6t.rst b/Misc/NEWS.d/next/Documentation/2018-06-15-14-58-45.bpo-33847.IIDp6t.rst new file mode 100644 index 000000000000000..3c7e0cdb7b4367d --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2018-06-15-14-58-45.bpo-33847.IIDp6t.rst @@ -0,0 +1 @@ +Add '@' operator entry to index.