accept unicode strings in parse_string() under Python 2#49
Merged
timlnx merged 1 commit intotimlnx:masterfrom May 31, 2015
Merged
accept unicode strings in parse_string() under Python 2#49timlnx merged 1 commit intotimlnx:masterfrom
timlnx merged 1 commit intotimlnx:masterfrom
Conversation
In Python 3, str == unicode, so this problem does not exist, but in Python 2, if you call `parse_string(u"20 GiB")`, it'll raise a ValueError.
9e78dbc to
05e9729
Compare
Owner
|
Reviewed. Looks good! Thanks @drewbrew merged! |
timlnx
added a commit
that referenced
this pull request
May 31, 2015
accept unicode strings in parse_string() under Python 2
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.
In Python 3, strings are unicode, so this problem does not exist, but in Python 2, if you call
parse_string(u"20 GiB"), it'll raise a ValueError.