-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathabstract_base.txt
81 lines (77 loc) · 2.78 KB
/
abstract_base.txt
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
NAME
pyabstract_base
CLASSES
pybind11_builtins.pybind11_object(builtins.object)
AbstractBase
Derived
class AbstractBase(pybind11_builtins.pybind11_object)
| Method resolution order:
| AbstractBase
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __init__(self, /, *args, **kwargs)
| Initialize self. See help(type(self)) for accurate signature.
|
| return_magic_number(...)
| return_magic_number(self: pyabstract_base.AbstractBase) -> float
|
| something(...)
| something(self: pyabstract_base.AbstractBase, value: int) -> int
|
| whatever(...)
| whatever(self: pyabstract_base.AbstractBase, value: int) -> int
|
| ----------------------------------------------------------------------
| Static methods defined here:
|
| static_method(...) from builtins.PyCapsule
| static_method() -> bool
|
| ----------------------------------------------------------------------
| Static methods inherited from pybind11_builtins.pybind11_object:
|
| __new__(*args, **kwargs) from pybind11_builtins.pybind11_type
| Create and return a new object. See help(type) for accurate signature.
class Derived(AbstractBase)
| Method resolution order:
| Derived
| AbstractBase
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pyabstract_base.Derived, arg0: pyabstract_base.Derived) -> None
|
| 2. __init__(self: pyabstract_base.Derived) -> None
|
| return_magic_number(...)
| return_magic_number(self: pyabstract_base.Derived) -> float
|
| something(...)
| something(self: pyabstract_base.Derived, value: int) -> int
|
| ----------------------------------------------------------------------
| Methods inherited from AbstractBase:
|
| whatever(...)
| whatever(self: pyabstract_base.AbstractBase, value: int) -> int
|
| ----------------------------------------------------------------------
| Static methods inherited from AbstractBase:
|
| static_method(...) from builtins.PyCapsule
| static_method() -> bool
|
| ----------------------------------------------------------------------
| Static methods inherited from pybind11_builtins.pybind11_object:
|
| __new__(*args, **kwargs) from pybind11_builtins.pybind11_type
| Create and return a new object. See help(type) for accurate signature.