-
Notifications
You must be signed in to change notification settings - Fork 258
Try fixing Travis build #666
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
Conversation
2b362a8
to
5074699
Compare
@gvanrossum This fixes the red master (something changed in Travis environment). The fix also discovered that Could you please take a look? |
Could you please take a look?
I would, but I am a place with internet so marginal that I can't pull up
GitHub.
Maybe Friday, otherwise the weekend.
|
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.
Hi, this is my first Code Review on GitHub, so please be kind (or unkind).
Whats the #noqa tag actually doing?
That's indicating to linters (e.g. flake8, pylint) that they should not complain about that line. There are several tests that intentionally put bad code in a string type annotation or in a type comment (to verify that the typing module handles these correctly), and some linters are smart enough to look inside type comments or string annotations and complain, making the build fail. So the |
No description provided.