From: Serhiy Storchaka Date: Thu, 24 Oct 2013 21:01:25 +0000 (+0300) Subject: Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string X-Git-Tag: v3.4.0b1~555 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=124a0b314bcd1e3fb4d768e9f0a95242b0e4e2b3;p=thirdparty%2FPython%2Fcpython.git Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string argument. Original patch by Arfrever Frehtes Taifersar Arahesis. --- 124a0b314bcd1e3fb4d768e9f0a95242b0e4e2b3 diff --cc Misc/NEWS index 52c86907f4d2,b43fa9a058b0..9f9ed6597583 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,8 -12,6 +10,11 @@@ Projected release date: 2013-11-2 Core and Builtins ----------------- ++- Issue #19287: Fixed the "in" operator of dbm.ndbm databases for string ++ argument. Original patch by Arfrever Frehtes Taifersar Arahesis. ++ +- Issue #19369: Optimized the usage of __length_hint__(). + - Issue #18603: Ensure that PyOS_mystricmp and PyOS_mystrnicmp are in the Python executable and not removed by the linker's optimizer.