From: Serhiy Storchaka Date: Thu, 24 Oct 2013 21:08:13 +0000 (+0300) Subject: Issue #19288: Fixed the "in" operator of dbm.gnu databases for string X-Git-Tag: v3.4.0b1~554 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4f056d43d6ad62d63306cd8a693dda4b52d3ae34;p=thirdparty%2FPython%2Fcpython.git Issue #19288: Fixed the "in" operator of dbm.gnu databases for string argument. Original patch by Arfrever Frehtes Taifersar Arahesis. --- 4f056d43d6ad62d63306cd8a693dda4b52d3ae34 diff --cc Misc/NEWS index 9f9ed6597583,854a4a09c6ed..2323d8811593 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,11 -12,6 +10,14 @@@ Projected release date: 2013-11-2 Core and Builtins ----------------- ++- Issue #19288: Fixed the "in" operator of dbm.gnu databases for string ++ argument. Original patch by Arfrever Frehtes Taifersar Arahesis. ++ +- 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.