Stop using np.{builtin}, and fix bugs due to the previous confusion#8996
Merged
tacaswell merged 2 commits intomatplotlib:masterfrom Aug 6, 2017
Merged
Stop using np.{builtin}, and fix bugs due to the previous confusion#8996tacaswell merged 2 commits intomatplotlib:masterfrom
tacaswell merged 2 commits intomatplotlib:masterfrom
Conversation
This is the case for x in {int, bool, str, float, complex, object}.
Using the np.{x} version is deceptive as it suggests that there is a
difference. This change doesn't affect any external behaviour. The
`long` type is missing in python 3, so np.long is still useful
Additionally, make the fixes needed to avoid an incoming deprecation in numpy/numpy#9505
eric-wieser
commented
Aug 6, 2017
| def get_justify(colname, column, precision): | ||
| ntype = column.dtype | ||
|
|
||
| if np.issubdtype(ntype, str) or np.issubdtype(ntype, bytes): |
Contributor
Author
There was a problem hiding this comment.
This didn't catch unicode on python 2, but did on python 3
eric-wieser
commented
Aug 6, 2017
| length = max(len(colname), fixed_width) | ||
| return 0, length+padding, "%s" # left justify | ||
|
|
||
| if np.issubdtype(ntype, np.int): |
Contributor
Author
There was a problem hiding this comment.
This was false for ntype == np.uint8
eric-wieser
commented
Aug 6, 2017
| np.max(list(map(len, list(map(str, column)))))) | ||
| return 1, length+padding, "%d" # right justify | ||
|
|
||
| if np.issubdtype(ntype, np.float): |
Contributor
Author
There was a problem hiding this comment.
This worked correctly, but will raise a warning in numpy 1.14 if numpy/numpy#9505 is merged
dstansby
approved these changes
Aug 6, 2017
Member
|
Thanks @eric-wieser ! |
6 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
For
xin{int, bool, str, float, complex, object},np.{x}andbuiltins.{x}are one and the same:Using the
np.{x}version is deceptive as it suggests that there is a difference, when there is not. This change doesn't affect any external behaviour.Similar to numpy/numpy#9517