From 59d27be64fd0dcd7c2bf5d6a433832922b1cb9c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Delfino?= Date: Tue, 12 Jun 2018 15:41:22 -0300 Subject: [PATCH 1/2] Add '@' operator entry to index --- Doc/reference/expressions.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index 222b8978e3709ab..e843297153ccaed 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. From 2c96f026851e7274e47a1881af6aeb01525c81f1 Mon Sep 17 00:00:00 2001 From: Terry Jan Reedy Date: Fri, 15 Jun 2018 14:59:04 -0400 Subject: [PATCH 2/2] blurb --- .../next/Documentation/2018-06-15-14-58-45.bpo-33847.IIDp6t.rst | 1 + 1 file changed, 1 insertion(+) create mode 100644 Misc/NEWS.d/next/Documentation/2018-06-15-14-58-45.bpo-33847.IIDp6t.rst 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.