mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
24 lines
294 B
Python
24 lines
294 B
Python
from __future__ import annotations
|
|
|
|
from os import path
|
|
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: int | str, y: int = 1) -> None:
|
|
pass
|