[issue3541] bsddb memory leak on ubuntu

2009-05-26 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: I can *not* reproduce the problem with Python 2.6 (with its stock bsddb version) and Berkeley DB 4.7.25 (the current one). I can reproduce the issue if I use Berkeley DB 4.6.21. Seems to be a (solved) problem in the library. Berkeley DB 4.7.25 is known to sol

[issue3541] bsddb memory leak on ubuntu

2009-05-26 Thread Jesús Cea Avión
Jesús Cea Avión added the comment: Python 2.5 is in security maintenance mode only. Please, upgrade to Python 2.6. If you can not upgrade Python, install a recent bsddb release from http://www.jcea.es/programacion/pybsddb.htm If you can still reproduce the problem, let me know. -- ass

[issue3541] bsddb memory leak on ubuntu

2009-05-18 Thread Daniel Diniz
Daniel Diniz added the comment: I can confirm it in trunk and release26-maint on Ubuntu 8.04. For trunk: bsddb.__version__ : '4.7.3' libdb4.6-dev: 4.6.21-6ubuntu1 _bsddb.version(): (4, 6, 21) bsddb._bsddb.cvsid: '$Id: _bsddb.c 66568 2008-09-23 18:54:08Z jesus.cea $' -- resolution: out

[issue3541] bsddb memory leak on ubuntu

2009-05-16 Thread Marcin Bachry
Marcin Bachry added the comment: The test program uses constant memory on my machine. Ubuntu 9.04, libdb4.7.25-6ubuntu1, python 2.7 trunk. -- nosy: +marcin.bachry ___ Python tracker

[issue3541] bsddb memory leak on ubuntu

2009-05-16 Thread Daniel Diniz
Daniel Diniz added the comment: Confirmed in trunk. -- nosy: +ajaksu2, jcea priority: -> normal stage: -> test needed versions: +Python 2.6 -Python 2.5 ___ Python tracker ___ _

[issue3541] bsddb memory leak on ubuntu

2008-08-11 Thread Kuang-che Wu
New submission from Kuang-che Wu <[EMAIL PROTECTED]>: 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