diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-05-08 21:28:46 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-05-08 21:28:46 (GMT) |
commit | bb6721474c08d9c941b2fb3f617cfc6956f3a302 (patch) | |
tree | ce397b91b5769d1e604483fe0d86ce954c91665c | |
parent | 37fe8bfde6a225139ac689b03a5de4ddbd49a83c (diff) | |
download | cpython-bb6721474c08d9c941b2fb3f617cfc6956f3a302.zip cpython-bb6721474c08d9c941b2fb3f617cfc6956f3a302.tar.gz cpython-bb6721474c08d9c941b2fb3f617cfc6956f3a302.tar.bz2 |
Clean up some int/long detection remnants in resource module.
-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 |