
noreply at sourceforge
Jan 23, 2001, 1:48 PM
Post #4 of 4
(39 views)
Permalink
|
|
[Bug #129179] Memory leak on repeated reloads
[In reply to]
|
|
Bug #129179, was updated on 2001-Jan-17 13:57 Here is a current snapshot of the bug. Project: Python Category: Python Interpreter Core Status: Closed Resolution: Works For Me Bug Group: None Priority: 5 Submitted by: cgw Assigned to : bwarsaw Summary: Memory leak on repeated reloads Details: boo.py: ========== Class Boo: pass a = [1] b = Boo() def testit(): try: divmod(a,b) except TypeError, msg: print msg testit() =========== import boo while 1: reload(boo) Follow-Ups: Date: 2001-Jan-23 12:48 By: bwarsaw Comment: I've run this test case through Insure and I do not see any memory growth when running the reload loop different number of times. Same memory usage profile for 1x, 2x, 25x through loop. Closing this bug report unless a better test case can be provided. ------------------------------------------------------- Date: 2001-Jan-19 22:36 By: bwarsaw Comment: Running top while executing this program shows no memory growth using the current CVS snapshot as of 20-Jan-2001, 1:34am EST. RH6.1. Charles, can you verify? If it's growing for you, I'll run it through Insure (but I'm currently Insuring another memory leak, which is why I've only done the top test for now). ------------------------------------------------------- For detailed info, follow this link: http://sourceforge.net/bugs/?func=detailbug&bug_id=129179&group_id=5470
|