[issue6594] json C serializer performance tied to structure depth on some systems

Valentin Kuznetsov report at bugs.python.org
Mon Dec 7 16:51:04 CET 2009


Valentin Kuznetsov <vkuznet at gmail.com> added the comment:

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)

----------

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


More information about the Python-bugs-list mailing list