From: Yury Selivanov Date: Tue, 23 Jan 2018 07:00:03 +0000 (-0500) Subject: bpo-32436: Remove a redundant assert (#5275) X-Git-Tag: v3.7.0b1~134 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83c8675edb4fe278c5d930f7865977a5d3c7168a;p=python bpo-32436: Remove a redundant assert (#5275) --- diff --git a/Python/hamt.c b/Python/hamt.c index 8ba5082026..eb69fdd136 100644 --- a/Python/hamt.c +++ b/Python/hamt.c @@ -1116,7 +1116,6 @@ hamt_node_bitmap_find(PyHamtNode_Bitmap *self, } idx = hamt_bitindex(self->b_bitmap, bit); - assert(idx >= 0); key_idx = idx * 2; val_idx = key_idx + 1;