mirror of
https://github.com/wassname/catalyst.git
synced 2026-06-27 17:47:56 +08:00
MAINT: fix bug in issue template
due to rounding error the bitness function gave the correct result on 64b but not on 32b
This commit is contained in:
@@ -6,7 +6,7 @@ Before I tell you about my issue, let me describe my environment:
|
||||
|
||||
* Operating System: (Windows Version or `$ uname --all`)
|
||||
* Python Version: `$ python --version`
|
||||
* Python Bitness: `$ python -c 'import math, sys;print(int(math.log(sys.maxsize, 2) + 1))'`
|
||||
* Python Bitness: `$ python -c 'import math, sys;print(int(math.log(sys.maxsize + 1, 2) + 1))'`
|
||||
* How did you install Zipline: (`pip`, `conda`, or `other (please explain)`)
|
||||
* Python packages: `$ pip freeze` or `$ conda list`
|
||||
|
||||
|
||||
Reference in New Issue
Block a user