FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cppjit/python/cppjit/types.py at main · compiler-research/cppjit · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
compiler-research
/
cppjit
Public
Notifications
You must be signed in to change notification settings
Fork
8
Star
12
Code
Issues
6
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cppjit
/
python
/
cppjit
/
types.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
32 lines (25 loc) · 604 Bytes
Breadcrumbs
cppjit
/
python
/
cppjit
/
types.py
Copy path
File metadata and controls
32 lines (25 loc) · 604 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
"""C++ proxy types."""
import
cppjit
bck
=
cppjit
.
_backend
Instance
=
bck
.
CPPInstance
try
:
import
__pypy__
# noqa: F401
__all__
=
[
"Instance"
]
except
ImportError
:
__all__
=
[
"DataMember"
,
"Instance"
,
"Function"
,
"MethodScope"
,
# noqa: F822
"InstanceArray"
,
"LowLevelView"
,
"Template"
,
]
DataMember
=
bck
.
CPPDataMember
Function
=
bck
.
CPPOverload
Method
=
bck
.
CPPOverload
Scope
=
bck
.
CPPScope
InstanceArray
=
bck
.
InstanceArray
LowLevelView
=
bck
.
LowLevelView
Template
=
bck
.
TemplateProxy
del
bck
Back
|
FazBrowse Home
|
New Git URL