We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Migrated issue, originally created by Dolda2000 (@Dolda2000)
The FindIdentifiers code in pyparser crashes on an exception handler that uses an expression other than a simple name for the exception type.
The fix is simple. Line 105 in pyparser.py is currently:
self.listener.undeclared_identifiers.add(node.type.id)
Simply replace with this:
self.visit(node.type)
The text was updated successfully, but these errors were encountered:
Changes by Dolda2000 (@Dolda2000):
Sorry, something went wrong.
Michael Bayer (@zzzeek) wrote:
python 3 only apparently
→ c314ecf
Changes by Michael Bayer (@zzzeek):
No branches or pull requests
Migrated issue, originally created by Dolda2000 (@Dolda2000)
The FindIdentifiers code in pyparser crashes on an exception handler that uses an expression other than a simple name for the exception type.
The fix is simple. Line 105 in pyparser.py is currently:
Simply replace with this:
The text was updated successfully, but these errors were encountered: