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: A wrong return type in memory.rst
Type: Stage: resolved
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: benjamin.peterson, docs@python, miss-islington, shihai1991
Priority: normal Keywords: patch

Created on 2019-07-05 15:14 by shihai1991, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 14604 merged shihai1991, 2019-07-05 15:16
PR 14613 merged miss-islington, 2019-07-06 04:03
PR 14614 merged miss-islington, 2019-07-06 04:03
Messages (4)
msg347356 - (view) Author: Hai Shi (shihai1991) * (Python triager) Date: 2019-07-05 15:14
the result should be a bytes object in #L70 in https://github.com/python/cpython/blob/master/Doc/c-api/memory.rst
msg347416 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2019-07-06 04:03
New changeset 39a5d17a7f1387582eb484422df450bc09a5543e by Benjamin Peterson (Hai Shi) in branch 'master':
closes bpo-37508: Fix name of type in memory.rst. (GH-14604)
https://github.com/python/cpython/commit/39a5d17a7f1387582eb484422df450bc09a5543e
msg347417 - (view) Author: miss-islington (miss-islington) Date: 2019-07-06 04:08
New changeset af5e62e9e2b56017d3716fce40d959adfb753554 by Miss Islington (bot) in branch '3.7':
closes bpo-37508: Fix name of type in memory.rst. (GH-14604)
https://github.com/python/cpython/commit/af5e62e9e2b56017d3716fce40d959adfb753554
msg347418 - (view) Author: miss-islington (miss-islington) Date: 2019-07-06 04:10
New changeset cf294c48e4f97117f708c116362208d28ebfe08f by Miss Islington (bot) in branch '3.8':
closes bpo-37508: Fix name of type in memory.rst. (GH-14604)
https://github.com/python/cpython/commit/cf294c48e4f97117f708c116362208d28ebfe08f
History
Date User Action Args
2022-04-11 14:59:17adminsetgithub: 81689
2019-07-06 04:10:00miss-islingtonsetmessages: + msg347418
2019-07-06 04:08:43miss-islingtonsetnosy: + miss-islington
messages: + msg347417
2019-07-06 04:03:37miss-islingtonsetpull_requests: + pull_request14428
2019-07-06 04:03:31miss-islingtonsetpull_requests: + pull_request14427
2019-07-06 04:03:16benjamin.petersonsetstatus: open -> closed

nosy: + benjamin.peterson
messages: + msg347416

resolution: fixed
stage: patch review -> resolved
2019-07-05 15:16:45shihai1991setkeywords: + patch
stage: patch review
pull_requests: + pull_request14419
2019-07-05 15:14:10shihai1991create