From 41c44164935496d7bd87cd0ab2fc23f63e27b427 Mon Sep 17 00:00:00 2001 From: Joe Jevnik Date: Fri, 18 Mar 2016 19:19:01 -0400 Subject: [PATCH] MAINT: fix bug in issue template due to rounding error the bitness function gave the correct result on 64b but not on 32b --- .github/ISSUE_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 77c5ffc4..bc501c44 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -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`