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: Document PyDoc_STRVAR and PyDoc_STR macros
Type: enhancement Stage: resolved
Components: Documentation Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: bsolomon1124, docs@python, zach.ware
Priority: normal Keywords:

Created on 2019-10-06 23:43 by bsolomon1124, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 16607 merged bsolomon1124, 2019-10-06 23:43
PR 19727 merged zach.ware, 2020-04-27 02:35
PR 19728 merged zach.ware, 2020-04-27 02:37
Messages (5)
msg354053 - (view) Author: Brad Solomon (bsolomon1124) * Date: 2019-10-06 23:43
The C-API reference would benefit from a short mention of PyDoc_STRVAR usage, since it is used so frequently within Modules/.
msg367356 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2020-04-27 02:31
New changeset b54e46cb57ebac5c525a9a6be241412cd57bc935 by Brad Solomon in branch 'master':
bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607)
https://github.com/python/cpython/commit/b54e46cb57ebac5c525a9a6be241412cd57bc935
msg367357 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2020-04-27 02:33
Thanks for the patch!
msg367359 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2020-04-27 02:45
New changeset ca5649c4c1ab260c8ceb8a57ec703c06e2707986 by Zachary Ware in branch '3.8':
[3.8] bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607) (GH-19727)
https://github.com/python/cpython/commit/ca5649c4c1ab260c8ceb8a57ec703c06e2707986
msg367360 - (view) Author: Zachary Ware (zach.ware) * (Python committer) Date: 2020-04-27 02:46
New changeset 70ba81459eeb5818848f86b65cdf78feb86f9612 by Zachary Ware in branch '3.7':
[3.7] bpo-38387: Formally document PyDoc_STRVAR and PyDoc_STR macros (GH-16607) (GH-19728)
https://github.com/python/cpython/commit/70ba81459eeb5818848f86b65cdf78feb86f9612
History
Date User Action Args
2022-04-11 14:59:21adminsetgithub: 82568
2020-04-27 02:46:14zach.waresetmessages: + msg367360
2020-04-27 02:45:13zach.waresetmessages: + msg367359
2020-04-27 02:37:30zach.waresetpull_requests: + pull_request19050
2020-04-27 02:35:01zach.waresetpull_requests: + pull_request19049
2020-04-27 02:33:01zach.waresetstatus: open -> closed

title: Document PyDoc_STRVAR -> Document PyDoc_STRVAR and PyDoc_STR macros
nosy: docs@python, zach.ware, bsolomon1124
versions: + Python 3.7, Python 3.8, Python 3.9
messages: + msg367357
resolution: fixed
stage: resolved
2020-04-27 02:31:52zach.waresetnosy: + zach.ware
messages: + msg367356
2019-10-06 23:43:50bsolomon1124create