diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-30 19:16:27 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2014-09-30 19:16:27 (GMT) |
commit | 0676a406bf9435a59eaca1a54fa582b0b6b79b9f (patch) | |
tree | 8e742ce5dc38872dfadfac8b6c673ebacb1c3403 /Misc | |
parent | 63860e5407e9ac1251e0698fb2d208a1da54bd3c (diff) | |
download | cpython-0676a406bf9435a59eaca1a54fa582b0b6b79b9f.zip cpython-0676a406bf9435a59eaca1a54fa582b0b6b79b9f.tar.gz cpython-0676a406bf9435a59eaca1a54fa582b0b6b79b9f.tar.bz2 |
Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` but accepting a `va_list` argument.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ Release date: TBA Core and Builtins ----------------- +- Issue #18711: Add a new `PyErr_FormatV` function, similar to `PyErr_Format` + but accepting a `va_list` argument. + - Issue #22520: Fix overflow checking when generating the repr of a unicode object. |