From 83c8675edb4fe278c5d930f7865977a5d3c7168a Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Tue, 23 Jan 2018 02:00:03 -0500 Subject: [PATCH] bpo-32436: Remove a redundant assert (#5275) --- Python/hamt.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Python/hamt.c b/Python/hamt.c index 8ba5082026f..eb69fdd136b 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;