diff options
author | Georg Brandl <georg@python.org> | 2007-10-23 18:25:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-10-23 18:25:20 (GMT) |
commit | b6538a86bae16b47b55af1e6cc2c8cf76c30f7e1 (patch) | |
tree | 865acd8874104a5bb276bd85fb3db9ae253cabaa | |
parent | d1cdf21cb92556b90bb210772bf1a19908e8314e (diff) | |
download | cpython-b6538a86bae16b47b55af1e6cc2c8cf76c30f7e1.zip cpython-b6538a86bae16b47b55af1e6cc2c8cf76c30f7e1.tar.gz cpython-b6538a86bae16b47b55af1e6cc2c8cf76c30f7e1.tar.bz2 |
Remove redundant PyInt/PyLong checks.
-rw-r--r-- | Objects/fileobject.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c index b4abac5..9f63814 100644 --- a/Objects/fileobject.c +++ b/Objects/fileobject.c @@ -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); } |