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 <[email protected]>
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: <[email protected]>
2009-02-27 20:11:16rhettingerlinkissue5381 messages
2009-02-27 20:11:16rhettingercreate