[New-bugs-announce] [issue22534] Possible Memory Leak with 'shelve'

TJ report at bugs.python.org
Wed Oct 1 23:22:51 CEST 2014


New submission from TJ:

The following code causes memory usage to grow excessively.

'''
import shelve

def func():
    for i in range(1000000):
        sh = shelve.open('blah')
        sh.close()

func()
'''

----------
components: Library (Lib)
messages: 228127
nosy: tjhnson
priority: normal
severity: normal
status: open
title: Possible Memory Leak with 'shelve'
versions: Python 2.7

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue22534>
_______________________________________


More information about the New-bugs-announce mailing list