FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/runtime/Native/ITypeOffsets.cs at v3.0.1 · pythonnet/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythonnet
/
pythonnet
Public
Notifications
You must be signed in to change notification settings
Fork
780
Star
5.5k
Code
Issues
153
Pull requests
12
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
runtime
/
Native
/
ITypeOffsets.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
74 lines (73 loc) · 2.22 KB
Breadcrumbs
pythonnet
/
src
/
runtime
/
Native
/
ITypeOffsets.cs
Copy path
File metadata and controls
74 lines (73 loc) · 2.22 KB
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
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
// ReSharper disable InconsistentNaming
// ReSharper disable IdentifierTypo
namespace
Python
.
Runtime
.
Native
{
using
System
.
Diagnostics
.
CodeAnalysis
;
[
SuppressMessage
(
"Style"
,
"IDE1006:Naming Styles"
,
Justification
=
"Following CPython"
,
Scope
=
"type"
)
]
interface
ITypeOffsets
{
int
bf_getbuffer
{
get
;
}
int
mp_ass_subscript
{
get
;
}
int
mp_length
{
get
;
}
int
mp_subscript
{
get
;
}
int
name
{
get
;
}
int
nb_positive
{
get
;
}
int
nb_negative
{
get
;
}
int
nb_add
{
get
;
}
int
nb_subtract
{
get
;
}
int
nb_multiply
{
get
;
}
int
nb_true_divide
{
get
;
}
int
nb_and
{
get
;
}
int
nb_int
{
get
;
}
int
nb_float
{
get
;
}
int
nb_or
{
get
;
}
int
nb_xor
{
get
;
}
int
nb_lshift
{
get
;
}
int
nb_rshift
{
get
;
}
int
nb_remainder
{
get
;
}
int
nb_invert
{
get
;
}
int
nb_inplace_add
{
get
;
}
int
nb_inplace_subtract
{
get
;
}
int
nb_index
{
get
;
}
int
ob_size
{
get
;
}
int
ob_type
{
get
;
}
int
qualname
{
get
;
}
int
sq_contains
{
get
;
}
int
sq_length
{
get
;
}
int
tp_alloc
{
get
;
}
int
tp_as_buffer
{
get
;
}
int
tp_as_mapping
{
get
;
}
int
tp_as_number
{
get
;
}
int
tp_as_sequence
{
get
;
}
int
tp_base
{
get
;
}
int
tp_bases
{
get
;
}
int
tp_basicsize
{
get
;
}
int
tp_call
{
get
;
}
int
tp_clear
{
get
;
}
int
tp_dealloc
{
get
;
}
int
tp_descr_get
{
get
;
}
int
tp_descr_set
{
get
;
}
int
tp_dict
{
get
;
}
int
tp_dictoffset
{
get
;
}
int
tp_flags
{
get
;
}
int
tp_free
{
get
;
}
int
tp_getattro
{
get
;
}
int
tp_hash
{
get
;
}
int
tp_is_gc
{
get
;
}
int
tp_itemsize
{
get
;
}
int
tp_iter
{
get
;
}
int
tp_iternext
{
get
;
}
int
tp_methods
{
get
;
}
int
tp_mro
{
get
;
}
int
tp_name
{
get
;
}
int
tp_new
{
get
;
}
int
tp_repr
{
get
;
}
int
tp_richcompare
{
get
;
}
int
tp_weaklistoffset
{
get
;
}
int
tp_setattro
{
get
;
}
int
tp_str
{
get
;
}
int
tp_traverse
{
get
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL