Mark Dickinson <[email protected]> added the comment:
Indeed, Objects/unicodeobject.c (default branch) has this, at around line 13839:
if ((prec*10) / 10 != prec) {
PyErr_SetString(PyExc_ValueError,
"prec too big");
goto onError;
}
... which since 'prec' has type int, will invoke undefined behaviour. There
are probably many other cases like this one.
Serhiy, what platform are you on? And are you applying any special
compile-time flags? For gcc, we should be using -fwrapv, which in this case
should make the above code work as intended.
----------
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue14700>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com