Commit b6538a86 authored by Georg Brandl's avatar Georg Brandl

Remove redundant PyInt/PyLong checks.

parent d1cdf21c
......@@ -206,10 +206,7 @@ PyObject_AsFileDescriptor(PyObject *o)
int fd;
PyObject *meth;
if (PyInt_Check(o)) {
fd = PyInt_AsLong(o);
}
else if (PyLong_Check(o)) {
if (PyLong_Check(o)) {
fd = PyLong_AsLong(o);
}
else if ((meth = PyObject_GetAttrString(o, "fileno")) != NULL)
......@@ -219,11 +216,7 @@ PyObject_AsFileDescriptor(PyObject *o)
if (fno == NULL)
return -1;
if (PyInt_Check(fno)) {
fd = PyInt_AsLong(fno);
Py_DECREF(fno);
}
else if (PyLong_Check(fno)) {
if (PyLong_Check(fno)) {
fd = PyLong_AsLong(fno);
Py_DECREF(fno);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment