[issue19288] __contains__() of dbm.gnu databases fails with str

2013-10-24 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> committed/rejected status: open -> closed ___ Python tracker ___ ___

[issue19288] __contains__() of dbm.gnu databases fails with str

2013-10-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 09ed1b3b54f3 by Serhiy Storchaka in branch '3.3': Issue #19288: Fixed the "in" operator of dbm.gnu databases for string http://hg.python.org/cpython/rev/09ed1b3b54f3 New changeset 379372612f6d by Serhiy Storchaka in branch 'default': Issue #19288: F

[issue19288] __contains__() of dbm.gnu databases fails with str

2013-10-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- assignee: -> serhiy.storchaka nosy: +serhiy.storchaka type: -> behavior ___ Python tracker ___

[issue19288] __contains__() of dbm.gnu databases fails with str

2013-10-19 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- keywords: +easy, patch stage: -> patch review Added file: http://bugs.python.org/file32227/issue19288.patch ___ Python tracker __

[issue19288] __contains__() of dbm.gnu databases fails with str

2013-10-18 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis: __contains__() of dbm.gnu databases fails with str. This is inconsistent with other databases (dbm.ndbm (issue #19287) and dbm.dumb). $ python3.2 -c 'import dbm.ndbm; db=dbm.ndbm.open("/tmp/ndbm_db", "c"); db["key"]="value"; print(b"ke