bpo-33847: Add '@' operator entry to index (GH-7669) · python/cpython@cd9ede6 (original) (raw)
File tree
2 files changed
lines changed
- Misc/NEWS.d/next/Documentation
2 files changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1097,7 +1097,9 @@ the other must be a sequence. In the former case, the numbers are converted to a | ||
1097 | 1097 | common type and then multiplied together. In the latter case, sequence |
1098 | 1098 | repetition is performed; a negative repetition factor yields an empty sequence. |
1099 | 1099 | |
1100 | -.. index:: single: matrix multiplication | |
1100 | +.. index:: | |
1101 | + single: matrix multiplication | |
1102 | + operator: @ | |
1101 | 1103 | |
1102 | 1104 | The ``@`` (at) operator is intended to be used for matrix multiplication. No |
1103 | 1105 | builtin Python types implement this operator. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1 | +Add '@' operator entry to index. |