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 bob.ippolito
Recipients
Date 2004-02-26.01:05:14
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This patch allows:
    d = {}
    d.update([(1,2), (3,4)])

The current way to do it is (unfortunately):
    d = {}
    d.update(dict([(1,2), (3,4)]))
History
Date User Action Args
2007-08-23 15:32:28adminlinkissue904720 messages
2007-08-23 15:32:28admincreate