Issue 33847: doc: Add '@' operator entry to index (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/78028

classification

Title: doc: Add '@' operator entry to index
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.8, Python 3.7, Python 3.6

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: terry.reedy Nosy List: adelfino, docs@python, miss-islington, terry.reedy
Priority: normal Keywords: patch

Created on 2018-06-12 18:44 by adelfino, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 7669 merged adelfino,2018-06-12 18:44
PR 7717 merged miss-islington,2018-06-15 19:24
PR 7718 merged miss-islington,2018-06-15 19:25
Messages (5)
msg319398 - (view) Author: Andrés Delfino (adelfino) * (Python triager) Date: 2018-06-12 18:44
Currently, the index only refers to decorators for the @ symbol. PR adds entry for the matrix multiplication operator.
msg319633 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2018-06-15 18:08
This is definitely an oversight to be corrected. Index entries for the other binary arithmetic operators point to the table at https://docs.python.org/3/library/stdtypes.html#numeric-types-int-float-complex But @ is not in that table since number @ number is meaningless and invalid. So I agree that the best location is the sentence in https://docs.python.org/3/reference/expressions.html#binary-arithmetic-operations.
msg319651 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2018-06-15 19:23
New changeset 695118600fecaa7b95634e168ad7cbbc561fd1ec by Terry Jan Reedy (Andrés Delfino) in branch 'master': bpo-33847: Add '@' operator entry to index (GH-7669) https://github.com/python/cpython/commit/695118600fecaa7b95634e168ad7cbbc561fd1ec
msg319657 - (view) Author: miss-islington (miss-islington) Date: 2018-06-15 19:42
New changeset c05c0e045ccf6e065c59c193195dc0e9b7242dd4 by Miss Islington (bot) in branch '3.7': bpo-33847: Add '@' operator entry to index (GH-7669) https://github.com/python/cpython/commit/c05c0e045ccf6e065c59c193195dc0e9b7242dd4
msg319658 - (view) Author: miss-islington (miss-islington) Date: 2018-06-15 19:45
New changeset cd9ede6b20948af51f9a27b64bd0dfd8909c24f1 by Miss Islington (bot) in branch '3.6': bpo-33847: Add '@' operator entry to index (GH-7669) https://github.com/python/cpython/commit/cd9ede6b20948af51f9a27b64bd0dfd8909c24f1
History
Date User Action Args
2022-04-11 14:59:01 admin set github: 78028
2018-06-15 20:12:05 terry.reedy set status: open -> closedresolution: fixedstage: patch review -> resolved
2018-06-15 19:45:22 miss-islington set messages: +
2018-06-15 19:42:33 miss-islington set nosy: + miss-islingtonmessages: +
2018-06-15 19:25:14 miss-islington set pull_requests: + <pull%5Frequest7333>
2018-06-15 19:24:19 miss-islington set pull_requests: + <pull%5Frequest7332>
2018-06-15 19:23:02 terry.reedy set messages: +
2018-06-15 18:08:18 terry.reedy set assignee: docs@python -> terry.reedymessages: + nosy: + terry.reedy
2018-06-12 18:44:53 adelfino set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest7284>
2018-06-12 18:44:14 adelfino create