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:
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: