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

Linking stops working with "from __future__ import annotations" #369

Open
blaisethom opened this issue Nov 29, 2021 · 0 comments
Open

Linking stops working with "from __future__ import annotations" #369

blaisethom opened this issue Nov 29, 2021 · 0 comments

Comments

@blaisethom
Copy link

blaisethom commented Nov 29, 2021

When using "from future import annotations", linking of types stops working. I believe this is because the behaviour of inspect.signature changes to returning only the string form of the class reference as in the code, and so pdoc3 no longer finds the package name.

For example, setting proj/test.py as:

class MyClass:
    def func2(x: int):
        return x

and proj/test.py as:

#from __future__ import annotations

from proj.test2 import MyClass

def func(x: MyClass):
    """My new docstring"""
    return x

Will have the linking work, but if you uncomment the "from future" import it no longer works

Expected Behavior

Linking works with future annotations.

Actual Behavior

Linking stops working with future annotations.

Additional info

  • pdoc version: 0.10.0
  • python versions tested: 3.8.12 and 3.10.0

Some early prototyping within a notebook suggests that typing.get_type_hints does still get the fully qualified name if the classes are imported in the notebook, but I've been unable so far to get that to work using f.obj within a pdoc template.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant