Re: Python list Limit

2006-11-17 Thread Fredrik Lundh
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

2006-11-17 Thread Bugra Cakir
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