sphinx/tests/roots/test-ext-autosummary-filename-map/autosummary_dummy_module.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
294 B
Python
Raw Normal View History

from __future__ import annotations
from os import path
2020-07-08 07:36:40 -05:00
from typing import Union
class Foo:
class Bar:
pass
def __init__(self):
pass
def bar(self):
pass
@property
def baz(self):
pass
2023-01-01 18:01:14 -06:00
def bar(x: int | str, y: int = 1) -> None:
2020-07-08 07:36:40 -05:00
pass