Skip to content
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

Closed
rchen152 opened this issue Sep 8, 2018 · 1 comment · Fixed by #313
Closed

Pytype cannot handle <class name>.<nested class name> in pyi files #150

rchen152 opened this issue Sep 8, 2018 · 1 comment · Fixed by #313
Assignees
Labels

Comments

@rchen152
Copy link
Contributor

rchen152 commented Sep 8, 2018

For example, third_party/2and3/google/protobuf/descriptor_pb2.pyi contains:

class UninterpretedOption(Message):
    class NamePart(Message):
        def FromString(cls, s: bytes) -> UninterpretedOption.NamePart: ...

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.

@rchen152 rchen152 added the bug label Sep 8, 2018
@martindemello martindemello self-assigned this Oct 9, 2018
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
@martindemello martindemello removed their assignment Oct 18, 2018
@rchen152
Copy link
Contributor Author

rchen152 commented May 1, 2019

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 rchen152 self-assigned this May 7, 2019
rchen152 added a commit that referenced this issue May 12, 2019
Makes progress toward #150.
Makes progress toward #171.

PiperOrigin-RevId: 247497485
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
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants