python-bloom-filter icon indicating copy to clipboard operation
python-bloom-filter copied to clipboard

Update bloom_filter.py

Open agarwl opened this issue 5 years ago • 1 comments

Fix incorrect use of XOR operator to use correct POWER operator. In Python "2 ^ N" means "2 XOR N" whereas "2 ** N" means "2 to the power N". The fact that this change still passes all tests either indicates that there are serious test flaws.

agarwl avatar Apr 06 '20 16:04 agarwl

There's actually another one further down in File_seek_backend

remram44 avatar May 05 '21 19:05 remram44