mirror of
https://github.com/python/cpython.git
synced 2025-07-24 03:35:53 +00:00
Revert a premature patch for issue #14010 (changeset aaaf36026511).
This commit is contained in:
parent
9e64c91c92
commit
278d03bd66
6 changed files with 14 additions and 224 deletions
|
@ -1217,7 +1217,7 @@ PyNumber_AsSsize_t(PyObject *item, PyObject *err)
|
|||
to be an int or have an __int__ method. Steals integral's
|
||||
reference. error_format will be used to create the TypeError if integral
|
||||
isn't actually an Integral instance. error_format should be a format string
|
||||
that can accept a char* naming integral's type.
|
||||
that can accept a char* naming integral's type.
|
||||
*/
|
||||
static PyObject *
|
||||
convert_integral_to_int(PyObject *integral, const char *error_format)
|
||||
|
@ -1236,7 +1236,7 @@ convert_integral_to_int(PyObject *integral, const char *error_format)
|
|||
}
|
||||
PyErr_Format(PyExc_TypeError, error_format, Py_TYPE(integral)->tp_name);
|
||||
Py_DECREF(integral);
|
||||
return NULL;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
|
@ -2681,10 +2681,7 @@ PyObject *
|
|||
PyIter_Next(PyObject *iter)
|
||||
{
|
||||
PyObject *result;
|
||||
if (Py_EnterRecursiveCall(" while iterating"))
|
||||
return NULL;
|
||||
result = (*iter->ob_type->tp_iternext)(iter);
|
||||
Py_LeaveRecursiveCall();
|
||||
if (result == NULL &&
|
||||
PyErr_Occurred() &&
|
||||
PyErr_ExceptionMatches(PyExc_StopIteration))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue