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.

作者 A. Skrobov
收信人 A. Skrobov, serhiy.storchaka
日期 2016-02-25.06:08:52
SpamBayes Score -1.0
Marked as misclassified
Message-id <1456380533.75.0.854399798664.issue26415@psf.upfronthosting.co.za>
In-reply-to
内容
A practical note: if, instead of importing crash.py, I do a json.loads, with a few extra transformations:

with open("crash.py") as f: holo_table={tuple(int(z) for z in k.split(', ')):v for k,v in json.loads(f.readlines()[0][13:].replace('(','"').replace(')','"')).iteritems()}

--the whole data structure loads in a jiffy.

Makes me wonder why this roundabout approach is so much more efficient than the native parsing.
历史
日期 用户 动作 参数
2016-02-25 06:08:53A. Skrobov修改recipients: + A. Skrobov, serhiy.storchaka
2016-02-25 06:08:53A. Skrobov修改messageid: <1456380533.75.0.854399798664.issue26415@psf.upfronthosting.co.za>
2016-02-25 06:08:53A. Skrobov链接issue26415 messages
2016-02-25 06:08:52A. Skrobov创建