]> granicus.if.org Git - python/commitdiff
bpo-33847: Add '@' operator entry to index (GH-7669)
authorAndrés Delfino <adelfino@gmail.com>
Fri, 15 Jun 2018 19:23:00 +0000 (16:23 -0300)
committerTerry Jan Reedy <tjreedy@udel.edu>
Fri, 15 Jun 2018 19:23:00 +0000 (15:23 -0400)
Doc/reference/expressions.rst
Misc/NEWS.d/next/Documentation/2018-06-15-14-58-45.bpo-33847.IIDp6t.rst [new file with mode: 0644]

index 61bc912c3f77e9f999ee41a2f8a61073bd248570..17f1f2c7b318b49db22b5733505d7bee86ea2289 100644 (file)
@@ -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.
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 (file)
index 0000000..3c7e0cd
--- /dev/null
@@ -0,0 +1 @@
+Add '@' operator entry to index.