-
Notifications
You must be signed in to change notification settings - Fork 284
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
Pytype cannot handle <class name>.<nested class name> in pyi files #150
Labels
Comments
rchen152
pushed a commit
that referenced
this issue
Oct 16, 2018
This is a conservative change that simply adds a node.classes field alongside node.constants, and leaves the nested classes in both places. All existing tests pass, and it should be enough to support a fix to #150. PiperOrigin-RevId: 216776237
rchen152
pushed a commit
that referenced
this issue
Oct 17, 2018
This is a conservative change that simply adds a node.classes field alongside node.constants, and leaves the nested classes in both places. All existing tests pass, and it should be enough to support a fix to #150. PiperOrigin-RevId: 216776237
One thing that would be useful until we get this bug fixed is to give a clearer error message, so that when it is encountered in hand-crafted stubs, the writer can figure out what's going on. |
rchen152
added a commit
that referenced
this issue
May 12, 2019
After this CL, we'll have three missing pieces left: * forward references to the fully qualified names of nested classes * referencing a nested class inside itself * referencing a nested class outside the body of the top-level class Makes progress towards #150. Makes progress towards #171. PiperOrigin-RevId: 247499367
rchen152
added a commit
that referenced
this issue
May 12, 2019
Supports referencing nested classes by their fully qualified name from anywhere, and by their bare name from inside themselves (so that `self` resolves properly). Also fixes a bug in load_pytd for resolving deeply nested classes. Makes progress towards #150. Makes progress towards #171. PiperOrigin-RevId: 247839027
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For example, third_party/2and3/google/protobuf/descriptor_pb2.pyi contains:
Pytype thinks that UninterpretedOption is an import and goes looking for the corresponding pyi file, leading to:
third_party/2and3/google/protobuf/descriptor_pb2.pyi: pytype.load_pytd.BadDependencyError: Can't find pyi for 'google.protobuf.descriptor_pb2.UninterpretedOption', referenced from 'google.protobuf.descriptor_pb2'
The problem is that the CollectDependencies visitor assumes that the first part of a dotted name is always a module: https://github.com/google/pytype/blob/master/pytype/pytd/visitors.py#L1830.
The text was updated successfully, but these errors were encountered: