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 tjhnson
Recipients tjhnson
Date 2014-10-01.21:22:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1412198571.01.0.730305442625.issue22534@psf.upfronthosting.co.za>
In-reply-to
Content
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()
'''
History
Date User Action Args
2014-10-01 21:22:51tjhnsonsetrecipients: + tjhnson
2014-10-01 21:22:51tjhnsonsetmessageid: <1412198571.01.0.730305442625.issue22534@psf.upfronthosting.co.za>
2014-10-01 21:22:50tjhnsonlinkissue22534 messages
2014-10-01 21:22:50tjhnsoncreate