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
Date 2002-11-25.10:29:38
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Implements dict.sequpdate() as discussed on python-
dev:

def sequpdate(self, iterable, value=True):
    for k in iterable:
        self[k] = value
    return self
History
Date User Action Args
2007-08-23 15:18:29adminlinkissue643443 messages
2007-08-23 15:18:29admincreate