Total maximal size of data
Diez B. Roggisch
deets at nospam.web.de
Mon Jan 25 14:23:57 EST 2010
Am 25.01.10 20:05, schrieb Alexander Moibenko:
> I have a simple question to which I could not find an answer.
> What is the total maximal size of list including size of its elements?
> I do not like to look into python source.
But it would answer that question pretty fast. Because then you'd see
that all list-object-methods are defined in terms of Py_ssize_t, which
is an alias for ssize_t of your platform. 64bit that should be a 64bit long.
Diez
More information about the Python-list
mailing list