diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/hamt.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/hamt.c b/Python/hamt.c index 8ba5082..eb69fdd 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; |