Issue 36254: Fix invalid uses of %d in format strings in C (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/80435

classification

Title: Fix invalid uses of %d in format strings in C
Type: behavior Stage: resolved
Components: Extension Modules, Interpreter Core Versions: Python 3.8, Python 3.7

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: serhiy.storchaka, vstinner
Priority: normal Keywords: patch

Created on 2019-03-10 10:44 by serhiy.storchaka, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 12264 merged serhiy.storchaka,2019-03-10 10:47
PR 12318 merged serhiy.storchaka,2019-03-14 07:17
PR 12320 closed serhiy.storchaka,2019-03-14 07:44
PR 12322 merged serhiy.storchaka,2019-03-14 08:27
Messages (5)
msg337606 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-03-10 10:44
The proposed patch fixes invalid uses of %d in format strings in C (mostly when the argument has type Py_ssize_t or size_t).
msg337609 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-03-10 10:57
See also .
msg337875 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-03-13 21:00
New changeset d53fe5f407ff4b529628b01a1bcbf21a6aad5c3a by Serhiy Storchaka in branch 'master': bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) https://github.com/python/cpython/commit/d53fe5f407ff4b529628b01a1bcbf21a6aad5c3a
msg337901 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-03-14 08:06
New changeset 2c0d3f454705bb5ccf5f6189f3cf77bbae4f056b by Serhiy Storchaka in branch 'master': bpo-36254: Fix yet one invalid use of %d in format string in C. (GH-12318) https://github.com/python/cpython/commit/2c0d3f454705bb5ccf5f6189f3cf77bbae4f056b
msg337904 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2019-03-14 08:47
New changeset 783bed4c8daf65a2893d94761ea44af4e3718f4f by Serhiy Storchaka in branch '3.7': [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (GH-12322) https://github.com/python/cpython/commit/783bed4c8daf65a2893d94761ea44af4e3718f4f
History
Date User Action Args
2022-04-11 14:59:12 admin set github: 80435
2019-08-31 20:29:15 serhiy.storchaka set status: open -> closedresolution: fixedstage: patch review -> resolved
2019-03-14 08:47:42 serhiy.storchaka set messages: +
2019-03-14 08:27:17 serhiy.storchaka set pull_requests: + <pull%5Frequest12296>
2019-03-14 08:06:22 serhiy.storchaka set messages: +
2019-03-14 07:44:29 serhiy.storchaka set pull_requests: + <pull%5Frequest12294>
2019-03-14 07:17:43 serhiy.storchaka set pull_requests: + <pull%5Frequest12292>
2019-03-13 21:00:20 serhiy.storchaka set messages: +
2019-03-10 10:57:05 serhiy.storchaka set messages: +
2019-03-10 10:47:12 serhiy.storchaka set keywords: + patchstage: patch reviewpull_requests: + <pull%5Frequest12249>
2019-03-10 10:44:49 serhiy.storchaka create