mirror of
https://github.com/python/cpython.git
synced 2025-08-31 05:58:33 +00:00
Three patches by Amaury Forgeot d'Arc; SF patch# 1754484.
This commit is contained in:
parent
27ae52362c
commit
307fa8cc82
3 changed files with 15 additions and 9 deletions
|
@ -851,7 +851,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
|
|||
fail:
|
||||
if (callresults) {
|
||||
PyObject **callresult2 = callresults;
|
||||
while (callresult2 <= callresult) {
|
||||
while (callresult2 < callresult) {
|
||||
Py_DECREF(*callresult2);
|
||||
++callresult2;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue