You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the fast parser, this is considered a fatal parse error and no other errors are reported. In the old parser, it's a blocking parse error -- no further checks happen after parsing, but other parse errors are reported. The fast parser should at least support this behavior.
The text was updated successfully, but these errors were encountered:
ddfisher
changed the title
Incorrect number of arguments in type signature should not be a blocking error
Incorrect number of arguments in type signature should not be a fatal error
Jan 13, 2017
Instead of throwing an exception up to the parse function when encountering an error, the fast parser will now report it to the errors object and keep parsing. These errors are still considered blocking errors, so type checking will not continue past the parsing stage. This means that mypy will show you all your parse errors, instead of showing them to you one at a time as you fix them.
Fixes#2685.
In the fast parser, this is considered a fatal parse error and no other errors are reported. In the old parser, it's a blocking parse error -- no further checks happen after parsing, but other parse errors are reported. The fast parser should at least support this behavior.
The text was updated successfully, but these errors were encountered: