This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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:01adminsetgithub: 78028
2018-06-15 20:12:05terry.reedysetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2018-06-15 19:45:22miss-islingtonsetmessages: + msg319658
2018-06-15 19:42:33miss-islingtonsetnosy: + miss-islington
messages: + msg319657
2018-06-15 19:25:14miss-islingtonsetpull_requests: + pull_request7333
2018-06-15 19:24:19miss-islingtonsetpull_requests: + pull_request7332
2018-06-15 19:23:02terry.reedysetmessages: + msg319651
2018-06-15 18:08:18terry.reedysetassignee: docs@python -> terry.reedy

messages: + msg319633
nosy: + terry.reedy
2018-06-12 18:44:53adelfinosetkeywords: + patch
stage: patch review
pull_requests: + pull_request7284
2018-06-12 18:44:14adelfinocreate