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 ysj.ray
Recipients Kain94, eric.araujo, georg.brandl, r.david.murray, terry.reedy, ysj.ray
Date 2010-12-09.13:56:43
SpamBayes Score 8.5522845e-07
Marked as misclassified No
Message-id <1291903006.58.0.819509769148.issue9523@psf.upfronthosting.co.za>
In-reply-to
Content
Here is the updated patch, which fixed:

1. remove get() method of gdbm since issue6045 has already add it.

2. method keys() and items() of dbm object return set instead of list. Since pep3119 said keys() and items() should return collections.Set and set is a collections.Set.

3. add update() method to dbm object, which follows implementation in collections.MutableMapping.update().
History
Date User Action Args
2010-12-09 13:56:46ysj.raysetrecipients: + ysj.ray, georg.brandl, terry.reedy, eric.araujo, r.david.murray, Kain94
2010-12-09 13:56:46ysj.raysetmessageid: <1291903006.58.0.819509769148.issue9523@psf.upfronthosting.co.za>
2010-12-09 13:56:44ysj.raylinkissue9523 messages
2010-12-09 13:56:44ysj.raycreate