mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
26 lines
411 B
Python
26 lines
411 B
Python
class A:
|
|
"""A(foo, bar)"""
|
|
|
|
|
|
class B:
|
|
"""B(foo, bar)"""
|
|
def __init__(self):
|
|
"""B(foo, bar, baz)"""
|
|
|
|
|
|
class C:
|
|
"""C(foo, bar)"""
|
|
def __new__(cls):
|
|
"""C(foo, bar, baz)"""
|
|
|
|
|
|
class D:
|
|
def __init__(self):
|
|
"""D(foo, bar, baz)"""
|
|
|
|
|
|
class E:
|
|
def __init__(self):
|
|
"""E(foo: int, bar: int, baz: int) -> None \\
|
|
E(foo: str, bar: str, baz: str) -> None"""
|