mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
* Changed many files to use mkvalue() instead of newtupleobject().
* Fixcprt.py: added [-y file] option, do only files younger than file. * modsupport.[ch]: added vmkvalue(). * intobject.c: use mkvalue(). * stringobject.c: added "formatstring"; renamed string* to string_*; ceval.c: call formatstring for string % value. * longobject.c: close memory leak in divmod. * parsetok.c: set result node to NULL when returning an error.
This commit is contained in:
parent
f48b419a07
commit
e537240c25
21 changed files with 503 additions and 273 deletions
|
|
@ -844,8 +844,10 @@ l_divmod(v, w, pdiv, pmod)
|
|||
(temp = (longobject *) long_sub(div, one)) == NULL) {
|
||||
DECREF(mod);
|
||||
DECREF(div);
|
||||
XDECREF(one);
|
||||
return -1;
|
||||
}
|
||||
DECREF(one);
|
||||
DECREF(div);
|
||||
div = temp;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue