[issue36254] Fix invalid uses of %d in format strings in C

2019-08-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue36254] Fix invalid uses of %d in format strings in C

2019-03-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 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/783bed4c8daf65a2893d94761ea44af4e371

[issue36254] Fix invalid uses of %d in format strings in C

2019-03-14 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +12296 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue36254] Fix invalid uses of %d in format strings in C

2019-03-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 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 ---

[issue36254] Fix invalid uses of %d in format strings in C

2019-03-14 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +12294 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue36254] Fix invalid uses of %d in format strings in C

2019-03-14 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +12292 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue36254] Fix invalid uses of %d in format strings in C

2019-03-13 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 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 -

[issue36254] Fix invalid uses of %d in format strings in C

2019-03-10 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: See also issue36251. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue36254] Fix invalid uses of %d in format strings in C

2019-03-10 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- keywords: +patch pull_requests: +12249 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue36254] Fix invalid uses of %d in format strings in C

2019-03-10 Thread Serhiy Storchaka
New submission from Serhiy Storchaka : 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). -- components: Extension Modules, Interpreter Core messages: 337606 nosy: serhiy.storchaka, vstinner priority: normal seve