[Python-bugs-list] [Bug #127470] Memory leak in bdb
noreply@sourceforge.net
noreply@sourceforge.net
Wed, 03 Jan 2001 18:31:17 -0800
Bug #127470, was updated on 2001-Jan-03 17:22
Here is a current snapshot of the bug.
Project: Python
Category: Python Library
Status: Open
Resolution: None
Bug Group: None
Priority: 5
Submitted by: tlau
Assigned to : bwarsaw
Summary: Memory leak in bdb
Details: This program quickly grows to upwards of 70M on Linux with
Python 2.0:
import bdb
for memory_leak in xrange(10000000):
b = bdb.Bdb()
b.run('i=0', {}, {})
Yet factoring the bdb.Bdb() instantiation outside the loop
removes the memory leak.
Follow-Ups:
Date: 2001-Jan-03 18:31
By: gvanrossum
Comment:
Perhaps something in the trace code?
-------------------------------------------------------
For detailed info, follow this link:
http://sourceforge.net/bugs/?func=detailbug&bug_id=127470&group_id=5470