-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix all flake8 issues on python 3 #9209
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great!
How does this interact with #8878?
@@ -11,6 +11,11 @@ | |||
HANGUL_S_BASE = 0xAC00 | |||
HANGUL_S_COUNT = 19 * 21 * 28 | |||
|
|||
try: | |||
unichr |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indentation looks wrong here, and below
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure about all narrowing of the caught exceptions.. but lgtm in general.
@@ -3528,7 +3528,7 @@ def parse_string_list(text): | |||
# simpler syntaxes | |||
try: | |||
return json.loads(text) | |||
except: | |||
except ValueError: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, how can we be sure this is the only type of exception that can arise here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
From documentation:
If the data being deserialized is not a valid JSON document, a
JSONDecodeError
[subclass ofValueError
] will be raised.
This is the only kind of error we want to recover from.
@@ -7043,7 +7043,7 @@ def encode_utf8(data): | |||
for i in range(len(data)): | |||
data[i] = encode_utf8(data[i]) | |||
return data | |||
elif isinstance(data, unicode): | |||
elif isinstance(data, type(u'')): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems strictly less readable to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would you prefer:
try:
unicode
except NameError:
unicode = str
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not really. Just noticing out loud that this compatibility can make the code harder to read.
How would you do this in python3-only code?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would have written isinstance(data, str)
here. But perhaps a better way is doing isinstance(data, bytes)
so bytes
gets returned raw, and everything goes through str
and then encoded.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we add this to circleci?
Checking this on CircleCI is the intention of #8878. |
@quantum5 looks like this caused breakage on MacOS, see Looks like the change to |
Fix all flake8 issues uncovered by #8878 except the one in #9200.