Dear Maintainer,
Counting above 0000 0001 ffff fff0 causes python to loop back to 0001 ffff ffe0 then start counting up again.
This loops until 0001 0000 0000 where it starts counting back to 0000 0001 ffff ffff this loop is infinite.
The only way to resolve the issue is to have python break loop with if statement resetting the counter to 0000 0000
updating the next 32bit integer. While counting from 0000 0000 python counts through ffff ffff without an issue
0001 0000 ffff is fine just 0001 ffff ffff causes the loop python also freezes for 2 minutes on 0001 fff5 94d0 during
the loop. Python must be repeatidly force terminated using top when this happens.
generate a python venv using python3 -m venv <folder>, source python venv, create a file to count up in hex, set hex
value to anything under 0000 0001 ffff ffff and let it count up while recording the hex to a file.