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: Add missing PyErr_NoMemory() calls
Type: behavior Stage: resolved
Components: Extension Modules, Interpreter Core Versions: Python 3.8, Python 3.7, Python 3.6, Python 2.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ZackerySpytz, iritkatriel, serhiy.storchaka
Priority: normal Keywords: patch

Created on 2018-12-07 06:54 by ZackerySpytz, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 11015 merged ZackerySpytz, 2018-12-07 06:56
PR 11020 merged ZackerySpytz, 2018-12-07 11:33
PR 11026 merged serhiy.storchaka, 2018-12-07 15:00
Messages (6)
msg331276 - (view) Author: Zackery Spytz (ZackerySpytz) * (Python triager) Date: 2018-12-07 06:57
The attached PR adds some missing PyErr_NoMemory() calls.
msg331287 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-12-07 10:11
New changeset 4c49da0cb7434c676d70b9ccf38aca82ac0d64a9 by Serhiy Storchaka (Zackery Spytz) in branch 'master':
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015)
https://github.com/python/cpython/commit/4c49da0cb7434c676d70b9ccf38aca82ac0d64a9
msg331302 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-12-07 12:17
New changeset 602d307ac5e8a2da38a193dca3bdfef5994dfe67 by Serhiy Storchaka (Zackery Spytz) in branch '3.7':
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) (GH-11020)
https://github.com/python/cpython/commit/602d307ac5e8a2da38a193dca3bdfef5994dfe67
msg331330 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-12-07 16:09
New changeset 2d6bc25dbc3dc5662f13917eb759f92842bf6de6 by Serhiy Storchaka in branch '3.6':
bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) (GH-11020) (GH-11026)
https://github.com/python/cpython/commit/2d6bc25dbc3dc5662f13917eb759f92842bf6de6
msg331331 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2018-12-07 16:13
Backporting to 2.7 is not so trivial due to the number of conflicts. Zackery, do you mind to create a backport for 2.7?
msg378761 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-10-16 22:01
Can this be closed?  2.7 is no longer relevant.
History
Date User Action Args
2022-04-11 14:59:09adminsetgithub: 79617
2020-10-18 09:38:26serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2020-10-16 22:01:41iritkatrielsetnosy: + iritkatriel
messages: + msg378761
2018-12-07 16:13:00serhiy.storchakasetmessages: + msg331331
2018-12-07 16:09:25serhiy.storchakasetmessages: + msg331330
2018-12-07 15:00:34serhiy.storchakasetpull_requests: + pull_request10262
2018-12-07 12:51:28serhiy.storchakasetpull_requests: - pull_request10257
2018-12-07 12:17:45serhiy.storchakasetmessages: + msg331302
2018-12-07 11:33:50vstinnersetpull_requests: + pull_request10257
2018-12-07 11:33:43ZackerySpytzsetpull_requests: + pull_request10256
2018-12-07 10:11:32serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg331287
2018-12-07 06:57:38ZackerySpytzsetmessages: + msg331276
2018-12-07 06:56:53ZackerySpytzsetkeywords: + patch
stage: patch review
pull_requests: + pull_request10250
2018-12-07 06:54:27ZackerySpytzcreate