Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Sphinx / tests / roots / test-ext-autodoc / target / pep604.py
Size: Mime:
from __future__ import annotations

attr: int | str  #: docstring


def sum(x: int | str, y: int | str) -> int | str:
    """docstring"""


class Foo:
    """docstring"""

    attr: int | str  #: docstring

    def meth(self, x: int | str, y: int | str) -> int | str:
        """docstring"""