-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdocstrings.txt
57 lines (52 loc) · 1.78 KB
/
docstrings.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
NAME
pydocstrings
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:
|
| __eq__(...)
| __eq__(self: pydocstrings.Something, arg0: pydocstrings.Something) -> bool
|
| A comparison operator! More documentation here.
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pydocstrings.Something) -> None
|
| The default constructor! More documentation here.
|
| 2. __init__(self: pydocstrings.Something, arg0: pydocstrings.Something) -> None
|
| __lt__(...)
| __lt__(self: pydocstrings.Something, arg0: pydocstrings.Something) -> bool
|
| Less than! More documentation here.
|
| __ne__(...)
| __ne__(self: pydocstrings.Something, arg0: pydocstrings.Something) -> bool
|
| Inline friend! More documentation here.
|
| do_something(...)
| do_something(self: pydocstrings.Something) -> None
|
| A member function! More documentation here.
|
| ----------------------------------------------------------------------
| 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.
FUNCTIONS
some_function(...) method of builtins.PyCapsule instance
some_function() -> None
A free function! More documentation here.