This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kcwu
Recipients kcwu
Date 2008-08-11.13:06:44
SpamBayes Score 0.054686803
Marked as misclassified No
Message-id <1218460022.22.0.445363609563.issue3541@psf.upfronthosting.co.za>
In-reply-to
Content
On ubuntu, python 2.5.2.
The memory usage of following program is increasing infinitly. There may
be something leaking.

However, it only consumes constant memory on windows (python 2.5.2).

import bsddb
d = bsddb.hashopen('a.db', 'c')
d.close()
while True:
    d = bsddb.hashopen('a.db')
    d.close()
History
Date User Action Args
2008-08-11 13:07:02kcwusetrecipients: + kcwu
2008-08-11 13:07:02kcwusetmessageid: <1218460022.22.0.445363609563.issue3541@psf.upfronthosting.co.za>
2008-08-11 13:06:46kcwulinkissue3541 messages
2008-08-11 13:06:45kcwucreate