mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
merge 3.4 (#21209)
This commit is contained in:
commit
a548a30fed
3 changed files with 23 additions and 1 deletions
|
@ -1926,7 +1926,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
|
|||
if (v == Py_None)
|
||||
retval = Py_TYPE(reciever)->tp_iternext(reciever);
|
||||
else
|
||||
retval = _PyObject_CallMethodId(reciever, &PyId_send, "O", v);
|
||||
retval = _PyObject_CallMethodIdObjArgs(reciever, &PyId_send, v, NULL);
|
||||
}
|
||||
Py_DECREF(v);
|
||||
if (retval == NULL) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue