diff options
-rw-r--r-- | Modules/resource.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Modules/resource.c b/Modules/resource.c index facb7d9..22e177f 100644 --- a/Modules/resource.c +++ b/Modules/resource.c @@ -166,12 +166,10 @@ resource_setrlimit(PyObject *self, PyObject *args) return NULL; #else /* The limits are probably bigger than a long */ - rl.rlim_cur = PyLong_Check(curobj) ? - PyLong_AsLongLong(curobj) : PyLong_AsLong(curobj); + rl.rlim_cur = PyLong_AsLongLong(curobj); if (rl.rlim_cur == (rlim_t)-1 && PyErr_Occurred()) return NULL; - rl.rlim_max = PyLong_Check(maxobj) ? - PyLong_AsLongLong(maxobj) : PyLong_AsLong(maxobj); + rl.rlim_max = PyLong_AsLongLong(maxobj); if (rl.rlim_max == (rlim_t)-1 && PyErr_Occurred()) return NULL; #endif |