forked from prusnak/micropython-extmod-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.py
62 lines (40 loc) · 1.05 KB
/
example.py
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
__author__ = 'Module Author'
def func_a():
pass
def func_b(arg1):
pass
def func_c(arg1, arg2) -> None:
pass
def func_d(arg1, arg2, arg3) -> int:
pass
def func_e(arg1, arg2, arg3, arg4) -> str:
pass
def func_f(arg1, arg2: int, arg3, arg4, arg5: int=123) -> bytes:
pass
def func_g(arg1, arg2, arg3: str='test', arg4=None):
pass
def func_h(arg1, arg2, arg3, *args):
pass
def func_i(arg1, arg2, **kwargs):
pass
class Class(object):
def __init__(self, arg1, arg2):
pass
def func_a(self):
pass
def func_b(self, arg1):
pass
def func_c(self, arg1, arg2) -> None:
pass
def func_d(self, arg1, arg2, arg3) -> int:
pass
def func_e(self, arg1, arg2, arg3, arg4) -> str:
pass
def func_f(self, arg1, arg2: int, arg3, arg4, arg5: int=123) -> bytes:
pass
def func_g(self, arg1, arg2, arg3: str='test', arg4=None):
pass
def func_h(self, arg1, arg2, arg3, *args):
pass
def func_i(self, arg1, arg2, **kwargs):
pass