➜

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.

作者 rhettinger
收信人 Claudiu.Popa, r.david.murray, rhettinger, serhiy.storchaka
日期 2014-06-22.01:35:28
SpamBayes Score -1.0
Marked as misclassified 是
Message-id <1403400929.26.0.832337848324.issue21708@psf.upfronthosting.co.za>
In-reply-to
内容
The core idea is reasonable.  

The patch overreaches by adding readonly warnings to __setitem__ and __delitem__ which will spew-out on every call (these could be ignored or set to warn once by the user but that is PITA).

Minor nit.  We have a little PEP-8 overkill on the string splits:

+            with self.assertWarnsRegex(DeprecationWarning,
+                                       "The database file is missing, the "
+                                       "semantics of the 'c' flag will "
+                                       "be used."):
历史
日期 用户 动作 参数
2014-06-22 01:35:29rhettinger修改recipients: + rhettinger, r.david.murray, Claudiu.Popa, serhiy.storchaka
2014-06-22 01:35:29rhettinger修改messageid: <1403400929.26.0.832337848324.issue21708@psf.upfronthosting.co.za>
2014-06-22 01:35:29rhettinger链接issue21708 messages
2014-06-22 01:35:28rhettinger创建