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:
Joe Jevnik
2016-03-18 19:19:01 -04:00
parent 858e61abdc
commit 41c4416493
+1 -1
View File
@@ -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`