Martin Panter added the comment:

I tried the newer -fsanitize=undefined mode, and it is better than -ftrapv. It 
adds instrumentation that by default nicely reports the errors and continues 
running.

My problem with the large slice step is not restricted to Element Tree; it 
affects list objects too:

>>> "abcdef"[3::sys.maxsize]
Objects/unicodeobject.c:13794:55: runtime error: signed integer overflow: 3 + 
9223372036854775807 cannot be represented in type 'long int'
'd'

Regarding Anttiā€™s overflow macros, I noticed there is already a macro 
_PyTime_check_mul_overflow() in Python/pytime.c which does that kind of thing. 
Maybe it could help, though I am not sure. Has this sort of thing been done in 
other projects? We might need to be careful about the sign, e.g. clarify the 
macro is only for positive values, add an assertion, or handle both positive 
and negative.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue1621>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to