Skip to content

Commit

Permalink
MAINT: fix bug in issue template
Browse files Browse the repository at this point in the history
due to rounding error the bitness function gave the correct result on 64b but not on 32b
  • Loading branch information
llllllllll committed Mar 18, 2016
1 parent 858e61a commit 41c4416
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`

Expand Down

0 comments on commit 41c4416

Please sign in to comment.