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: Update doc of PyBuffer_ToContiguous
Type: 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: docs@python, matrixise, miss-islington, pitrou, shihai1991
Priority: normal Keywords: patch

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

Pull Requests
URL Status Linked Edit
PR 14992 merged shihai1991, 2019-07-28 17:27
PR 15998 merged miss-islington, 2019-09-11 17:26
PR 15999 merged matrixise, 2019-09-11 17:26
Messages (5)
msg348585 - (view) Author: Hai Shi (shihai1991) * (Python triager) Date: 2019-07-28 17:24
Due to https://github.com/python/cpython/blob/master/Objects/memoryobject.c#L985,
order could be 'A' in PyBuffer_ToContiguous()
msg351992 - (view) Author: miss-islington (miss-islington) Date: 2019-09-11 17:25
New changeset 15f5a7527b87e11fcf23069c147fd4cb7d42cfb0 by Miss Islington (bot) (Hai Shi) in branch 'master':
bpo-37698: Update doc of PyBuffer_ToContiguous (GH-14992)
https://github.com/python/cpython/commit/15f5a7527b87e11fcf23069c147fd4cb7d42cfb0
msg351993 - (view) Author: Stéphane Wirtel (matrixise) * (Python committer) Date: 2019-09-11 17:34
New changeset c62da14776d12276ed8f6ecbc74c0db8243b4260 by Stéphane Wirtel (Miss Islington (bot)) in branch '3.7':
bpo-37698: Update doc of PyBuffer_ToContiguous (GH-14992) (GH-15998)
https://github.com/python/cpython/commit/c62da14776d12276ed8f6ecbc74c0db8243b4260
msg351994 - (view) Author: Stéphane Wirtel (matrixise) * (Python committer) Date: 2019-09-11 17:36
New changeset 965e53a9deb1c7f02c68dee119eae94c3be8af15 by Stéphane Wirtel in branch '3.8':
[3.8] bpo-37698: Update doc of PyBuffer_ToContiguous (GH-14992) (GH-15999)
https://github.com/python/cpython/commit/965e53a9deb1c7f02c68dee119eae94c3be8af15
msg351996 - (view) Author: Stéphane Wirtel (matrixise) * (Python committer) Date: 2019-09-11 17:36
Thank you for your contribution
History
Date User Action Args
2022-04-11 14:59:18adminsetgithub: 81879
2019-09-11 17:36:40matrixisesetstatus: open -> closed
versions: + Python 3.7, Python 3.8, Python 3.9
messages: + msg351996

resolution: fixed
stage: patch review -> resolved
2019-09-11 17:36:03matrixisesetmessages: + msg351994
2019-09-11 17:34:21matrixisesetnosy: + matrixise
messages: + msg351993
2019-09-11 17:26:56matrixisesetpull_requests: + pull_request15626
2019-09-11 17:26:08miss-islingtonsetpull_requests: + pull_request15625
2019-09-11 17:25:57miss-islingtonsetnosy: + miss-islington
messages: + msg351992
2019-08-21 17:05:20shihai1991setnosy: + pitrou
2019-07-28 17:27:15shihai1991setkeywords: + patch
stage: patch review
pull_requests: + pull_request14758
2019-07-28 17:24:39shihai1991create