mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
22 lines
272 B
Python
22 lines
272 B
Python
from os import path # NOQA
|
|
from typing import Union
|
|
|
|
|
|
class Foo:
|
|
class Bar:
|
|
pass
|
|
|
|
def __init__(self):
|
|
pass
|
|
|
|
def bar(self):
|
|
pass
|
|
|
|
@property
|
|
def baz(self):
|
|
pass
|
|
|
|
|
|
def bar(x: Union[int, str], y: int = 1) -> None:
|
|
pass
|