-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Port http/ to Python 3 #3771
Port http/ to Python 3 #3771
Changes from all commits
0eab06b
31e8034
58d592e
4a8ce73
383b6bc
ce38311
8acf7ff
f556a4a
14d125b
2960433
38b3f63
092c3b7
3f5ac4f
5bfcd74
d5041dd
3058050
f371ac4
0d0602b
69cc630
a86b864
f7552bc
dea7fb9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
http/ is now ported to Python 3. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,13 +17,14 @@ ignore = | |
[pep8] | ||
max-line-length = 90 | ||
# W503 requires that binary operators be at the end, not start, of lines. Erik | ||
# doesn't like it. E203 is contrary to PEP8. | ||
ignore = W503,E203 | ||
# doesn't like it. E203 is contrary to PEP8. E731 is silly. | ||
ignore = W503,E203,E731 | ||
|
||
[flake8] | ||
# note that flake8 inherits the "ignore" settings from "pep8" (because it uses | ||
# pep8 to do those checks), but not the "max-line-length" setting | ||
max-line-length = 90 | ||
ignore=W503,E203,E731 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. based on the comment above that is inherited from pep8 so this is duplicate There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Although it is merged now, I meant that pep8 currently has the same line. So no "just E731". The whole line could be go away if I get it right. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @hawkowl it would have been nice to fix the comment if you thought it was wrong :/. |
||
|
||
[isort] | ||
line_length = 89 | ||
|
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.
You are not doing anything against E731 (BTW: Do not assign
lambda
and usedef
instead)So why do you want to add it here?