-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathexpose_as.py3.7.txt
145 lines (138 loc) · 4.31 KB
/
expose_as.py3.7.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
NAME
pyexpose_as
CLASSES
pybind11_builtins.pybind11_object(builtins.object)
Dummy
X
enum
class Dummy(pybind11_builtins.pybind11_object)
| Method resolution order:
| Dummy
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __hash__(...)
| __hash__(self: pyexpose_as.Dummy) -> int
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pyexpose_as.Dummy, value: int) -> None
|
| 2. __init__(self: pyexpose_as.Dummy, arg0: pyexpose_as.Dummy) -> None
|
| __int__(...)
| __int__(self: pyexpose_as.Dummy) -> int
|
| ----------------------------------------------------------------------
| Static methods defined here:
|
| static(...) from builtins.PyCapsule
| static() -> bool
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| constant_
|
| member_
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| typedef = <class 'pyexpose_as.X'>
|
|
| y_type_ = <class 'pyexpose_as.Dummy.y_type_'>
|
|
| ----------------------------------------------------------------------
| 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 X(pybind11_builtins.pybind11_object)
| Method resolution order:
| X
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __init__(...)
| __init__(*args, **kwargs)
| Overloaded function.
|
| 1. __init__(self: pyexpose_as.X) -> None
|
| 2. __init__(self: pyexpose_as.X, arg0: pyexpose_as.X) -> None
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| xfield
|
| ----------------------------------------------------------------------
| 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 enum(pybind11_builtins.pybind11_object)
| Method resolution order:
| enum
| pybind11_builtins.pybind11_object
| builtins.object
|
| Methods defined here:
|
| __eq__(...)
| __eq__(self: pyexpose_as.enum, arg0: pyexpose_as.enum) -> bool
|
| __getstate__(...)
| __getstate__(self: pyexpose_as.enum) -> tuple
|
| __hash__(...)
| __hash__(self: pyexpose_as.enum) -> int
|
| __init__(...)
| __init__(self: pyexpose_as.enum, arg0: int) -> None
|
| __int__(...)
| __int__(self: pyexpose_as.enum) -> int
|
| __ne__(...)
| __ne__(self: pyexpose_as.enum, arg0: pyexpose_as.enum) -> bool
|
| __repr__(...)
| __repr__(self: pyexpose_as.enum) -> str
|
| __setstate__(...)
| __setstate__(self: pyexpose_as.enum, arg0: tuple) -> None
|
| ----------------------------------------------------------------------
| Data descriptors defined here:
|
| __members__
|
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| A = enum.A
|
| B = enum.B
|
| C = enum.C
|
| ----------------------------------------------------------------------
| 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
free_function_(...) method of builtins.PyCapsule instance
free_function_() -> None
DATA
x_instance = <pyexpose_as.X object>