[Python-bugs-list] [ python-Bugs-678352 ] list.append memory leak ?

SourceForge.net noreply@sourceforge.net
Fri, 31 Jan 2003 12:18:57 -0800


Bugs item #678352, was opened at 2003-01-31 15:18
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=678352&group_id=5470

Category: Python Interpreter Core
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: thanos  vassilakis (thanos)
Assigned to: Nobody/Anonymous (nobody)
Summary: list.append memory leak ?

Initial Comment:
# this SEEMS to leak
l = xrange(10000)
while 1:
        a=[]
        map(a.append, l)
        del a

# this does not 
while 1:
       a=range(10000)
       del a



----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=678352&group_id=5470