diff options
author | Stefan Krah <skrah@bytereef.org> | 2011-09-12 14:22:47 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2011-09-12 14:22:47 (GMT) |
commit | b77c6c65c06a19740fe2f22004959a4aa1eaba5d (patch) | |
tree | 6ccb28f2eae9deae83ba3bedabc372135a2f9f11 /Objects | |
parent | 4165bfb6e9e508fce1c68a353bf24c793bb6b2a2 (diff) | |
download | cpython-b77c6c65c06a19740fe2f22004959a4aa1eaba5d.zip cpython-b77c6c65c06a19740fe2f22004959a4aa1eaba5d.tar.gz cpython-b77c6c65c06a19740fe2f22004959a4aa1eaba5d.tar.bz2 |
Issue #12963: PyLong_AsSize_t() now returns (size_t)-1 in all error cases.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/longobject.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index 552f8f0..a0b16a6 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -525,8 +525,8 @@ PyLong_AsUnsignedLong(PyObject *vv) return x; } -/* Get a C unsigned long int from a long int object. - Returns -1 and sets an error condition if overflow occurs. */ +/* Get a C size_t from a long int object. Returns (size_t)-1 and sets + an error condition if overflow occurs. */ size_t PyLong_AsSize_t(PyObject *vv) @@ -562,7 +562,7 @@ PyLong_AsSize_t(PyObject *vv) if ((x >> PyLong_SHIFT) != prev) { PyErr_SetString(PyExc_OverflowError, "Python int too large to convert to C size_t"); - return (unsigned long) -1; + return (size_t) -1; } } return x; |