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 vkuznet
Recipients bob.ippolito, pitrou, rhettinger, swalker, vkuznet
Date 2009-12-07.15:51:02
SpamBayes Score 1.9345513e-05
Marked as misclassified No
Message-id <1260201064.32.0.636708275197.issue6594@psf.upfronthosting.co.za>
In-reply-to
Content
I made data local, but adding del shows the same behavior.
This is the test

def test():
    source = open('mangled.json', 'r')
    data = json.load(source)
    source.close()
    del data
test()
time.sleep(20)
History
Date User Action Args
2009-12-07 15:51:04vkuznetsetrecipients: + vkuznet, rhettinger, bob.ippolito, pitrou, swalker
2009-12-07 15:51:04vkuznetsetmessageid: <1260201064.32.0.636708275197.issue6594@psf.upfronthosting.co.za>
2009-12-07 15:51:03vkuznetlinkissue6594 messages
2009-12-07 15:51:03vkuznetcreate