Tim Peters <tim.pet...@gmail.com> added the comment:

FWIW, I doubt there's a real issue here.  Objects in Python consume a lot more 
than a byte or two of memory, so the index range of a Python list is generally 
a lot less than ssize_t allows for.  In other words, quantify "large" in "large 
arrays".  How large can a Python list actually be, relative to ssize_t?  
Similar reasoning accounts for why we never worry about overflow when mucking 
with refcounts:  the size of a refcount member  exceeds the maximum number of 
references that could exist.

----------
nosy: +tim_one

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

Reply via email to