diff options
author | Georg Brandl <georg@python.org> | 2006-06-08 13:31:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-06-08 13:31:07 (GMT) |
commit | 98251f8a2f169d5fd1b6ae0fc9c020d00ec74df5 (patch) | |
tree | f8866400f0bfe7dbe2fca5607d730e06808eaa48 /Python/getargs.c | |
parent | c9ae4e8a2dbe29f1878f9acad411d5a64407fb76 (diff) | |
download | cpython-98251f8a2f169d5fd1b6ae0fc9c020d00ec74df5.zip cpython-98251f8a2f169d5fd1b6ae0fc9c020d00ec74df5.tar.gz cpython-98251f8a2f169d5fd1b6ae0fc9c020d00ec74df5.tar.bz2 |
Argh. "integer" is a very confusing word ;)
Actually, checking for INT_MAX and INT_MIN is correct since
the format code explicitly handles a C "int".
Diffstat (limited to 'Python/getargs.c')
-rw-r--r-- | Python/getargs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 727376d..1552790 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -624,12 +624,12 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags, ival = PyInt_AsLong(arg); if (ival == -1 && PyErr_Occurred()) return converterr("integer<i>", arg, msgbuf, bufsize); - else if (ival > LONG_MAX) { + else if (ival > INT_MAX) { PyErr_SetString(PyExc_OverflowError, "signed integer is greater than maximum"); return converterr("integer<i>", arg, msgbuf, bufsize); } - else if (ival < LONG_MIN) { + else if (ival < INT_MIN) { PyErr_SetString(PyExc_OverflowError, "signed integer is less than minimum"); return converterr("integer<i>", arg, msgbuf, bufsize); |