Pychunkbuffers

Latest version: v1.0.4

Safety actively analyzes 622315 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

1.0.4

Recently I noticed an error where, if I ran `run_chunked` with `chunksz=50, minidx=5, maxidx=5000`, then 105 chunks would be created instead of 100. The error was tracked down to an incorrect mathematical calculation regarding the number of chunks to create
py
n = minidx + math.ceil((maxidx - minidx) / chunksz)

is now simply
py
n = math.ceil((maxidx - minidx) / chunksz)

1.0.3

1.0.0

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.