Re: Python list Limit
Bugra Cakir wrote: > What is the size limit of list data type in Python ? there is no limit, beyond the size of a pointer, and the limitations put on your program by the operating system. > I've found an MemoryError while extending a list with > > samplelist.extend("tail") when the list is resi
Python list Limit
Hi, What is the size limit of list data type in Python ? I've found an MemoryError while extending a list with samplelist.extend("tail") Thanks !!! -- http://mail.python.org/mailman/listinfo/python-list