blob: ef600e2af83d4e1e9aa54493354a68d22cfc5204 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
from __future__ import annotations
from typing import overload
myint = int
#: docstring
variable: myint
#: docstring
variable2 = None # type: myint
def sum(x: myint, y: myint) -> myint:
"""docstring"""
return x + y
@overload
def mult(x: myint, y: myint) -> myint:
...
@overload
def mult(x: float, y: float) -> float:
...
def mult(x, y):
"""docstring"""
return x, y
class Foo:
"""docstring"""
#: docstring
attr1: myint
def __init__(self):
self.attr2: myint = None #: docstring
|