-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanual.txt
46 lines (43 loc) · 1.36 KB
/
manual.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
NAME
pymanual
CLASSES
pybind11_builtins.pybind11_object(builtins.object)
Something
class Something(pybind11_builtins.pybind11_object)
| Method resolution order:
| Something
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __getitem__(...)
| __getitem__(self: pymanual.Something, arg0: int) -> int
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pymanual.Something) -> None
|
| 2. __init__(self: pymanual.Something, arg0: pymanual.Something) -> None
|
| __str__(...)
| __str__(self: pymanual.Something) -> str
|
| something(...)
| something(self: pymanual.Something) -> bool
|
| whatever(...)
| whatever(self: pymanual.Something) -> bool
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| offset
|
| ----------------------------------------------------------------------
| 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.