Skip to content

Commit 83c8675

Browse files
authored
bpo-32436: Remove a redundant assert (#5275)
1 parent d83671e commit 83c8675

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Python/hamt.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1116,7 +1116,6 @@ hamt_node_bitmap_find(PyHamtNode_Bitmap *self,
11161116
}
11171117

11181118
idx = hamt_bitindex(self->b_bitmap, bit);
1119-
assert(idx >= 0);
11201119
key_idx = idx * 2;
11211120
val_idx = key_idx + 1;
11221121

0 commit comments

Comments
 (0)