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 rhettinger
Recipients bob.ippolito, rhettinger
Date 2009-02-27.20:11:16
SpamBayes Score 0.0006178924
Marked as misclassified No
Message-id <1235765478.61.0.305088296718.issue5381@psf.upfronthosting.co.za>
In-reply-to
Content
FWIW, here's the intended code for the filter in the last post:

    books = json.loads(infile, object_hook=OrderedDict)
    for book in books:
        del book['isbn']
    json.dumps(books, outfile)
History
Date User Action Args
2009-02-27 20:11:18rhettingersetrecipients: + rhettinger, bob.ippolito
2009-02-27 20:11:18rhettingersetmessageid: <1235765478.61.0.305088296718.issue5381@psf.upfronthosting.co.za>
2009-02-27 20:11:16rhettingerlinkissue5381 messages
2009-02-27 20:11:16rhettingercreate