bpo-32436: Remove a redundant assert (#5275)

This commit is contained in:
Yury Selivanov 2018-01-23 02:00:03 -05:00 committed by GitHub
parent d83671e996
commit 83c8675edb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -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;