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 serhiy.storchaka
Recipients Arfrever, Claudiu.Popa, ncoghlan, serhiy.storchaka
Date 2013-12-13.21:53:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1386971606.08.0.452383393754.issue19385@psf.upfronthosting.co.za>
In-reply-to
Content
> Now this seems odd, maybe catching + reraising an exception has a greater overhead than a func call and checking if an attribute is None.

Yes, of course, catching + reraising an exception is costly. But when an exception is not raised, this is cheap. Usually len() is called for open database.

> IMHO it is a bug fix, not a new feature, and could be applied in 3.3 and 3.4.

Hmm. If consider dbm.dumb as separated module, this is perhaps a new feature. But if consider it as an implementation of the dbm protocol, it should conform to other dbm modules, and this is a bugfix. What would you say Nick?
History
Date User Action Args
2013-12-13 21:53:26serhiy.storchakasetrecipients: + serhiy.storchaka, ncoghlan, Arfrever, Claudiu.Popa
2013-12-13 21:53:26serhiy.storchakasetmessageid: <1386971606.08.0.452383393754.issue19385@psf.upfronthosting.co.za>
2013-12-13 21:53:26serhiy.storchakalinkissue19385 messages
2013-12-13 21:53:25serhiy.storchakacreate