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 PyErr_FormatV
Type: enhancement Stage: resolved
Components: Interpreter Core Versions: Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: BreamoreBoy, pitrou, python-dev, vstinner
Priority: low Keywords: patch

Created on 2013-08-12 12:50 by pitrou, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
pyerr_formatv.patch pitrou, 2013-08-12 12:50 review
Messages (4)
msg194952 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2013-08-12 12:50
PyErr_FormatV can be useful to write third-party helper functions. Patch attached.
msg227974 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-09-30 18:51
Just a gentle reminder guys.
msg227979 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-09-30 19:16
New changeset 5629481cd26d by Antoine Pitrou in branch 'default':
Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` but accepting a `va_list` argument.
https://hg.python.org/cpython/rev/5629481cd26d
msg227991 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2014-09-30 19:56
Thanks for the reminder. Pushed!
History
Date User Action Args
2022-04-11 14:57:49adminsetgithub: 62911
2014-09-30 19:56:33pitrousetstatus: open -> closed
resolution: fixed
messages: + msg227991

stage: patch review -> resolved
2014-09-30 19:16:53python-devsetnosy: + python-dev
messages: + msg227979
2014-09-30 18:51:16BreamoreBoysetnosy: + BreamoreBoy

messages: + msg227974
versions: + Python 3.5, - Python 3.4
2013-08-12 12:53:21vstinnersetnosy: + vstinner
2013-08-12 12:50:03pitroucreate