Coverage Report

Created: 2026-07-14 06:16

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/cpython/Include/object.h
Line
Count
Source
1
#ifndef Py_OBJECT_H
2
#define Py_OBJECT_H
3
#ifdef __cplusplus
4
extern "C" {
5
#endif
6
7
8
/* Object and type object interface */
9
10
/*
11
Objects are structures allocated on the heap.  Special rules apply to
12
the use of objects to ensure they are properly garbage-collected.
13
Objects are never allocated statically or on the stack; they must be
14
accessed through special macros and functions only.  (Type objects are
15
exceptions to the first rule; the standard types are represented by
16
statically initialized type objects, although work on type/class unification
17
for Python 2.2 made it possible to have heap-allocated type objects too).
18
19
An object has a 'reference count' that is increased or decreased when a
20
pointer to the object is copied or deleted; when the reference count
21
reaches zero there are no references to the object left and it can be
22
removed from the heap.
23
24
An object has a 'type' that determines what it represents and what kind
25
of data it contains.  An object's type is fixed when it is created.
26
Types themselves are represented as objects; an object contains a
27
pointer to the corresponding type object.  The type itself has a type
28
pointer pointing to the object representing the type 'type', which
29
contains a pointer to itself!.
30
31
Objects do not float around in memory; once allocated an object keeps
32
the same size and address.  Objects that must hold variable-size data
33
can contain pointers to variable-size parts of the object.  Not all
34
objects of the same type have the same size; but the size cannot change
35
after allocation.  (These restrictions are made so a reference to an
36
object can be simply a pointer -- moving an object would require
37
updating all the pointers, and changing an object's size would require
38
moving it if there was another object right next to it.)
39
40
Objects are always accessed through pointers of the type 'PyObject *'.
41
The type 'PyObject' is a structure that only contains the reference count
42
and the type pointer.  The actual memory allocated for an object
43
contains other data that can only be accessed after casting the pointer
44
to a pointer to a longer structure type.  This longer type must start
45
with the reference count and type fields; the macro PyObject_HEAD should be
46
used for this (to accommodate for future changes).  The implementation
47
of a particular object type can cast the object pointer to the proper
48
type and back.
49
50
A standard interface exists for objects that contain an array of items
51
whose size is determined when the object is allocated.
52
*/
53
54
/* Py_DEBUG implies Py_REF_DEBUG. */
55
#if defined(Py_DEBUG) && !defined(Py_REF_DEBUG)
56
#  define Py_REF_DEBUG
57
#endif
58
59
#if defined(_Py_OPAQUE_PYOBJECT) && !defined(Py_LIMITED_API)
60
#   error "_Py_OPAQUE_PYOBJECT only makes sense with Py_LIMITED_API"
61
#endif
62
63
#ifndef _Py_OPAQUE_PYOBJECT
64
/* PyObject_HEAD defines the initial segment of every PyObject. */
65
#define PyObject_HEAD                   PyObject ob_base;
66
67
// Kept for backward compatibility. It was needed by Py_TRACE_REFS build.
68
#define _PyObject_EXTRA_INIT
69
70
/* Make all uses of PyObject_HEAD_INIT immortal.
71
 *
72
 * Statically allocated objects might be shared between
73
 * interpreters, so must be marked as immortal.
74
 *
75
 * Before changing this, see the check in PyModuleDef_Init().
76
 */
77
#if defined(Py_GIL_DISABLED)
78
#define PyObject_HEAD_INIT(type)    \
79
    {                               \
80
        0,                          \
81
        _Py_STATICALLY_ALLOCATED_FLAG, \
82
        { 0 },                      \
83
        0,                          \
84
        _Py_IMMORTAL_REFCNT_LOCAL,  \
85
        0,                          \
86
        (type),                     \
87
    },
88
#else
89
#define PyObject_HEAD_INIT(type)    \
90
250M
    {                               \
91
250M
        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
92
250M
        (type)                      \
93
250M
    },
94
#endif
95
96
#define PyVarObject_HEAD_INIT(type, size) \
97
250M
    {                                     \
98
250M
        PyObject_HEAD_INIT(type)          \
99
250M
        (size)                            \
100
250M
    },
101
102
/* PyObject_VAR_HEAD defines the initial segment of all variable-size
103
 * container objects.  These end with a declaration of an array with 1
104
 * element, but enough space is malloc'ed so that the array actually
105
 * has room for ob_size elements.  Note that ob_size is an element count,
106
 * not necessarily a byte count.
107
 */
108
#define PyObject_VAR_HEAD      PyVarObject ob_base;
109
#endif // !defined(_Py_OPAQUE_PYOBJECT)
110
111
#define Py_INVALID_SIZE (Py_ssize_t)-1
112
113
/* PyObjects are given a minimum alignment so that the least significant bits
114
 * of an object pointer become available for other purposes.
115
 * This must be an integer literal with the value (1 << _PyGC_PREV_SHIFT), number of bytes.
116
 */
117
#define _PyObject_MIN_ALIGNMENT 4
118
119
/* Nothing is actually declared to be a PyObject, but every pointer to
120
 * a Python object can be cast to a PyObject*.  This is inheritance built
121
 * by hand.  Similarly every pointer to a variable-size Python object can,
122
 * in addition, be cast to PyVarObject*.
123
 */
124
#ifdef _Py_OPAQUE_PYOBJECT
125
  /* PyObject is opaque */
126
#elif !defined(Py_GIL_DISABLED)
127
struct _object {
128
    _Py_ANONYMOUS union {
129
#if SIZEOF_VOID_P > 4
130
        int64_t ob_refcnt_full; /* This field is needed for efficient initialization with Clang on ARM */
131
        struct {
132
#  if PY_BIG_ENDIAN
133
            uint16_t ob_flags;
134
            uint16_t ob_overflow;
135
            uint32_t ob_refcnt;
136
#  else
137
            uint32_t ob_refcnt;
138
            uint16_t ob_overflow;
139
            uint16_t ob_flags;
140
#  endif
141
        };
142
#else
143
        Py_ssize_t ob_refcnt;  // part of stable ABI; do not change
144
#endif
145
        _Py_ALIGNED_DEF(_PyObject_MIN_ALIGNMENT, char) _aligner;
146
    };
147
148
    PyTypeObject *ob_type;  // part of stable ABI; do not change
149
};
150
#else
151
// Objects that are not owned by any thread use a thread id (tid) of zero.
152
// This includes both immortal objects and objects whose reference count
153
// fields have been merged.
154
#define _Py_UNOWNED_TID             0
155
156
struct _object {
157
    // ob_tid stores the thread id (or zero). It is also used by the GC and the
158
    // trashcan mechanism as a linked list pointer and by the GC to store the
159
    // computed "gc_refs" refcount.
160
    _Py_ALIGNED_DEF(_PyObject_MIN_ALIGNMENT, uintptr_t) ob_tid;
161
    uint16_t ob_flags;
162
    PyMutex ob_mutex;           // per-object lock
163
    uint8_t ob_gc_bits;         // gc-related state
164
    uint32_t ob_ref_local;      // local reference count
165
    Py_ssize_t ob_ref_shared;   // shared (atomic) reference count
166
    PyTypeObject *ob_type;
167
};
168
#endif // !defined(_Py_OPAQUE_PYOBJECT)
169
170
/* Cast argument to PyObject* type. */
171
189G
#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
172
173
#ifndef _Py_OPAQUE_PYOBJECT
174
struct PyVarObject {
175
    PyObject ob_base;
176
    Py_ssize_t ob_size; // Number of items in variable part. Part of stable ABI
177
};
178
#endif
179
typedef struct PyVarObject PyVarObject;
180
181
/* Cast argument to PyVarObject* type. */
182
12.1G
#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
183
184
185
// Test if the 'x' object is the 'y' object, the same as "x is y" in Python.
186
PyAPI_FUNC(int) Py_Is(PyObject *x, PyObject *y);
187
686M
#define Py_Is(x, y) ((x) == (y))
188
189
PyAPI_DATA(PyTypeObject) PyLong_Type;
190
PyAPI_DATA(PyTypeObject) PyBool_Type;
191
192
/* Definitions for the stable ABI */
193
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= _Py_PACK_VERSION(3, 14)
194
PyAPI_FUNC(PyTypeObject*) Py_TYPE(PyObject *ob);
195
#endif
196
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= _Py_PACK_VERSION(3, 15)
197
PyAPI_FUNC(Py_ssize_t) Py_SIZE(PyObject *ob);
198
PyAPI_FUNC(int) Py_IS_TYPE(PyObject *ob, PyTypeObject *type);
199
PyAPI_FUNC(void) Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size);
200
#endif
201
202
#ifndef _Py_OPAQUE_PYOBJECT
203
204
static inline void
205
Py_SET_TYPE(PyObject *ob, PyTypeObject *type)
206
1.44G
{
207
1.44G
    ob->ob_type = type;
208
1.44G
}
bytesobject.c:Py_SET_TYPE
Line
Count
Source
206
149M
{
207
149M
    ob->ob_type = type;
208
149M
}
Unexecuted instantiation: call.c:Py_SET_TYPE
Unexecuted instantiation: exceptions.c:Py_SET_TYPE
Unexecuted instantiation: genericaliasobject.c:Py_SET_TYPE
floatobject.c:Py_SET_TYPE
Line
Count
Source
206
652k
{
207
652k
    ob->ob_type = type;
208
652k
}
Unexecuted instantiation: listobject.c:Py_SET_TYPE
longobject.c:Py_SET_TYPE
Line
Count
Source
206
75.9M
{
207
75.9M
    ob->ob_type = type;
208
75.9M
}
Unexecuted instantiation: dictobject.c:Py_SET_TYPE
Unexecuted instantiation: memoryobject.c:Py_SET_TYPE
moduleobject.c:Py_SET_TYPE
Line
Count
Source
206
1.09k
{
207
1.09k
    ob->ob_type = type;
208
1.09k
}
object.c:Py_SET_TYPE
Line
Count
Source
206
2.97M
{
207
2.97M
    ob->ob_type = type;
208
2.97M
}
Unexecuted instantiation: obmalloc.c:Py_SET_TYPE
Unexecuted instantiation: picklebufobject.c:Py_SET_TYPE
Unexecuted instantiation: rangeobject.c:Py_SET_TYPE
Unexecuted instantiation: sentinelobject.c:Py_SET_TYPE
Unexecuted instantiation: setobject.c:Py_SET_TYPE
Unexecuted instantiation: sliceobject.c:Py_SET_TYPE
structseq.c:Py_SET_TYPE
Line
Count
Source
206
288
{
207
288
    ob->ob_type = type;
208
288
}
Unexecuted instantiation: templateobject.c:Py_SET_TYPE
Unexecuted instantiation: tupleobject.c:Py_SET_TYPE
typeobject.c:Py_SET_TYPE
Line
Count
Source
206
179M
{
207
179M
    ob->ob_type = type;
208
179M
}
Unexecuted instantiation: typevarobject.c:Py_SET_TYPE
Unexecuted instantiation: unicode_format.c:Py_SET_TYPE
Unexecuted instantiation: unicode_formatter.c:Py_SET_TYPE
Unexecuted instantiation: unicode_writer.c:Py_SET_TYPE
Unexecuted instantiation: unicodectype.c:Py_SET_TYPE
unicodeobject.c:Py_SET_TYPE
Line
Count
Source
206
520M
{
207
520M
    ob->ob_type = type;
208
520M
}
Unexecuted instantiation: unionobject.c:Py_SET_TYPE
Unexecuted instantiation: weakrefobject.c:Py_SET_TYPE
Unexecuted instantiation: _warnings.c:Py_SET_TYPE
Unexecuted instantiation: bltinmodule.c:Py_SET_TYPE
Unexecuted instantiation: ceval.c:Py_SET_TYPE
Unexecuted instantiation: codecs.c:Py_SET_TYPE
Unexecuted instantiation: codegen.c:Py_SET_TYPE
Unexecuted instantiation: compile.c:Py_SET_TYPE
Unexecuted instantiation: context.c:Py_SET_TYPE
Unexecuted instantiation: errors.c:Py_SET_TYPE
Unexecuted instantiation: flowgraph.c:Py_SET_TYPE
Unexecuted instantiation: frame.c:Py_SET_TYPE
Unexecuted instantiation: future.c:Py_SET_TYPE
gc.c:Py_SET_TYPE
Line
Count
Source
206
517M
{
207
517M
    ob->ob_type = type;
208
517M
}
Unexecuted instantiation: gc_gil.c:Py_SET_TYPE
Unexecuted instantiation: getargs.c:Py_SET_TYPE
Unexecuted instantiation: ceval_gil.c:Py_SET_TYPE
Unexecuted instantiation: hamt.c:Py_SET_TYPE
Unexecuted instantiation: hashtable.c:Py_SET_TYPE
Unexecuted instantiation: import.c:Py_SET_TYPE
Unexecuted instantiation: importdl.c:Py_SET_TYPE
Unexecuted instantiation: initconfig.c:Py_SET_TYPE
Unexecuted instantiation: instrumentation.c:Py_SET_TYPE
Unexecuted instantiation: instruction_sequence.c:Py_SET_TYPE
Unexecuted instantiation: intrinsics.c:Py_SET_TYPE
Unexecuted instantiation: legacy_tracing.c:Py_SET_TYPE
Unexecuted instantiation: lock.c:Py_SET_TYPE
Unexecuted instantiation: marshal.c:Py_SET_TYPE
Unexecuted instantiation: modsupport.c:Py_SET_TYPE
Unexecuted instantiation: mysnprintf.c:Py_SET_TYPE
Unexecuted instantiation: parking_lot.c:Py_SET_TYPE
Unexecuted instantiation: preconfig.c:Py_SET_TYPE
Unexecuted instantiation: pyarena.c:Py_SET_TYPE
Unexecuted instantiation: pyctype.c:Py_SET_TYPE
Unexecuted instantiation: pyhash.c:Py_SET_TYPE
Unexecuted instantiation: pylifecycle.c:Py_SET_TYPE
Unexecuted instantiation: pymath.c:Py_SET_TYPE
Unexecuted instantiation: pystate.c:Py_SET_TYPE
Unexecuted instantiation: pythonrun.c:Py_SET_TYPE
Unexecuted instantiation: pytime.c:Py_SET_TYPE
Unexecuted instantiation: qsbr.c:Py_SET_TYPE
Unexecuted instantiation: bootstrap_hash.c:Py_SET_TYPE
Unexecuted instantiation: specialize.c:Py_SET_TYPE
Unexecuted instantiation: slots.c:Py_SET_TYPE
Unexecuted instantiation: slots_generated.c:Py_SET_TYPE
Unexecuted instantiation: structmember.c:Py_SET_TYPE
Unexecuted instantiation: symtable.c:Py_SET_TYPE
Unexecuted instantiation: sysmodule.c:Py_SET_TYPE
Unexecuted instantiation: thread.c:Py_SET_TYPE
Unexecuted instantiation: traceback.c:Py_SET_TYPE
Unexecuted instantiation: tracemalloc.c:Py_SET_TYPE
Unexecuted instantiation: getopt.c:Py_SET_TYPE
Unexecuted instantiation: pystrcmp.c:Py_SET_TYPE
Unexecuted instantiation: pystrtod.c:Py_SET_TYPE
Unexecuted instantiation: pystrhex.c:Py_SET_TYPE
Unexecuted instantiation: dtoa.c:Py_SET_TYPE
Unexecuted instantiation: fileutils.c:Py_SET_TYPE
Unexecuted instantiation: suggestions.c:Py_SET_TYPE
Unexecuted instantiation: perf_trampoline.c:Py_SET_TYPE
Unexecuted instantiation: perf_jit_trampoline.c:Py_SET_TYPE
Unexecuted instantiation: jit_unwind.c:Py_SET_TYPE
Unexecuted instantiation: remote_debugging.c:Py_SET_TYPE
Unexecuted instantiation: dynload_shlib.c:Py_SET_TYPE
Unexecuted instantiation: config.c:Py_SET_TYPE
Unexecuted instantiation: gcmodule.c:Py_SET_TYPE
Unexecuted instantiation: _asynciomodule.c:Py_SET_TYPE
Unexecuted instantiation: atexitmodule.c:Py_SET_TYPE
Unexecuted instantiation: faulthandler.c:Py_SET_TYPE
Unexecuted instantiation: posixmodule.c:Py_SET_TYPE
Unexecuted instantiation: signalmodule.c:Py_SET_TYPE
Unexecuted instantiation: _tracemalloc.c:Py_SET_TYPE
Unexecuted instantiation: _suggestions.c:Py_SET_TYPE
_datetimemodule.c:Py_SET_TYPE
Line
Count
Source
206
12.3k
{
207
12.3k
    ob->ob_type = type;
208
12.3k
}
Unexecuted instantiation: _codecsmodule.c:Py_SET_TYPE
Unexecuted instantiation: _collectionsmodule.c:Py_SET_TYPE
Unexecuted instantiation: errnomodule.c:Py_SET_TYPE
Unexecuted instantiation: _iomodule.c:Py_SET_TYPE
Unexecuted instantiation: iobase.c:Py_SET_TYPE
Unexecuted instantiation: fileio.c:Py_SET_TYPE
Unexecuted instantiation: bytesio.c:Py_SET_TYPE
Unexecuted instantiation: bufferedio.c:Py_SET_TYPE
Unexecuted instantiation: textio.c:Py_SET_TYPE
Unexecuted instantiation: stringio.c:Py_SET_TYPE
itertoolsmodule.c:Py_SET_TYPE
Line
Count
Source
206
30
{
207
30
    ob->ob_type = type;
208
30
}
Unexecuted instantiation: sre.c:Py_SET_TYPE
Unexecuted instantiation: _sysconfig.c:Py_SET_TYPE
Unexecuted instantiation: _threadmodule.c:Py_SET_TYPE
Unexecuted instantiation: timemodule.c:Py_SET_TYPE
Unexecuted instantiation: _typesmodule.c:Py_SET_TYPE
Unexecuted instantiation: _typingmodule.c:Py_SET_TYPE
Unexecuted instantiation: _weakref.c:Py_SET_TYPE
Unexecuted instantiation: _abc.c:Py_SET_TYPE
Unexecuted instantiation: _functoolsmodule.c:Py_SET_TYPE
Unexecuted instantiation: _localemodule.c:Py_SET_TYPE
Unexecuted instantiation: _opcode.c:Py_SET_TYPE
Unexecuted instantiation: _operator.c:Py_SET_TYPE
Unexecuted instantiation: _stat.c:Py_SET_TYPE
Unexecuted instantiation: symtablemodule.c:Py_SET_TYPE
Unexecuted instantiation: pwdmodule.c:Py_SET_TYPE
Unexecuted instantiation: getpath.c:Py_SET_TYPE
Unexecuted instantiation: frozen.c:Py_SET_TYPE
Unexecuted instantiation: getbuildinfo.c:Py_SET_TYPE
Unexecuted instantiation: peg_api.c:Py_SET_TYPE
Unexecuted instantiation: file_tokenizer.c:Py_SET_TYPE
Unexecuted instantiation: helpers.c:Py_SET_TYPE
Unexecuted instantiation: myreadline.c:Py_SET_TYPE
Unexecuted instantiation: abstract.c:Py_SET_TYPE
Unexecuted instantiation: boolobject.c:Py_SET_TYPE
Unexecuted instantiation: bytes_methods.c:Py_SET_TYPE
Unexecuted instantiation: bytearrayobject.c:Py_SET_TYPE
Unexecuted instantiation: capsule.c:Py_SET_TYPE
Unexecuted instantiation: cellobject.c:Py_SET_TYPE
Unexecuted instantiation: classobject.c:Py_SET_TYPE
Unexecuted instantiation: codeobject.c:Py_SET_TYPE
complexobject.c:Py_SET_TYPE
Line
Count
Source
206
5.15k
{
207
5.15k
    ob->ob_type = type;
208
5.15k
}
Unexecuted instantiation: descrobject.c:Py_SET_TYPE
Unexecuted instantiation: enumobject.c:Py_SET_TYPE
Unexecuted instantiation: genobject.c:Py_SET_TYPE
Unexecuted instantiation: fileobject.c:Py_SET_TYPE
Unexecuted instantiation: frameobject.c:Py_SET_TYPE
Unexecuted instantiation: funcobject.c:Py_SET_TYPE
Unexecuted instantiation: interpolationobject.c:Py_SET_TYPE
Unexecuted instantiation: iterobject.c:Py_SET_TYPE
Unexecuted instantiation: lazyimportobject.c:Py_SET_TYPE
Unexecuted instantiation: odictobject.c:Py_SET_TYPE
Unexecuted instantiation: methodobject.c:Py_SET_TYPE
Unexecuted instantiation: namespaceobject.c:Py_SET_TYPE
Unexecuted instantiation: _contextvars.c:Py_SET_TYPE
Unexecuted instantiation: Python-ast.c:Py_SET_TYPE
Unexecuted instantiation: Python-tokenize.c:Py_SET_TYPE
Unexecuted instantiation: asdl.c:Py_SET_TYPE
Unexecuted instantiation: assemble.c:Py_SET_TYPE
Unexecuted instantiation: ast.c:Py_SET_TYPE
Unexecuted instantiation: ast_preprocess.c:Py_SET_TYPE
Unexecuted instantiation: ast_unparse.c:Py_SET_TYPE
Unexecuted instantiation: critical_section.c:Py_SET_TYPE
Unexecuted instantiation: crossinterp.c:Py_SET_TYPE
Unexecuted instantiation: getcopyright.c:Py_SET_TYPE
Unexecuted instantiation: getplatform.c:Py_SET_TYPE
Unexecuted instantiation: getversion.c:Py_SET_TYPE
Unexecuted instantiation: optimizer.c:Py_SET_TYPE
Unexecuted instantiation: pathconfig.c:Py_SET_TYPE
Unexecuted instantiation: pegen.c:Py_SET_TYPE
Unexecuted instantiation: pegen_errors.c:Py_SET_TYPE
Unexecuted instantiation: parser.c:Py_SET_TYPE
Unexecuted instantiation: buffer.c:Py_SET_TYPE
Unexecuted instantiation: lexer.c:Py_SET_TYPE
Unexecuted instantiation: number.c:Py_SET_TYPE
Unexecuted instantiation: state.c:Py_SET_TYPE
Unexecuted instantiation: string.c:Py_SET_TYPE
Unexecuted instantiation: readline_tokenizer.c:Py_SET_TYPE
Unexecuted instantiation: string_tokenizer.c:Py_SET_TYPE
Unexecuted instantiation: utf8_tokenizer.c:Py_SET_TYPE
Unexecuted instantiation: getcompiler.c:Py_SET_TYPE
Unexecuted instantiation: mystrtoul.c:Py_SET_TYPE
Unexecuted instantiation: token.c:Py_SET_TYPE
Unexecuted instantiation: action_helpers.c:Py_SET_TYPE
Unexecuted instantiation: string_parser.c:Py_SET_TYPE
209
210
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < _Py_PACK_VERSION(3, 11)
211
// Non-limited API & limited API 3.11 & below: use static inline functions and
212
// use _PyObject_CAST so that users don't need their own casts
213
38.1G
#  define Py_TYPE(ob) _Py_TYPE_impl(_PyObject_CAST(ob))
214
10.3G
#  define Py_SIZE(ob) _Py_SIZE_impl(_PyObject_CAST(ob))
215
20.0G
#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl(_PyObject_CAST(ob), (type))
216
1.66G
#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl(_PyVarObject_CAST(ob), (size))
217
1.44G
#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
218
#elif Py_LIMITED_API+0 < _Py_PACK_VERSION(3, 15)
219
// Limited API 3.11-3.14: use static inline functions, without casts
220
#  define Py_SIZE(ob) _Py_SIZE_impl(ob)
221
#  define Py_IS_TYPE(ob, type) _Py_IS_TYPE_impl((ob), (type))
222
#  define Py_SET_SIZE(ob, size) _Py_SET_SIZE_impl((ob), (size))
223
#  if Py_LIMITED_API+0 < _Py_PACK_VERSION(3, 14)
224
//   Py_TYPE() is static inline only on Limited API 3.13 and below
225
#    define Py_TYPE(ob) _Py_TYPE_impl(ob)
226
#  endif
227
#else
228
// Limited API 3.15+: use function calls
229
#endif
230
231
static inline
232
PyTypeObject* _Py_TYPE_impl(PyObject *ob)
233
46.6G
{
234
46.6G
    return ob->ob_type;
235
46.6G
}
bytesobject.c:_Py_TYPE_impl
Line
Count
Source
233
457M
{
234
457M
    return ob->ob_type;
235
457M
}
call.c:_Py_TYPE_impl
Line
Count
Source
233
716M
{
234
716M
    return ob->ob_type;
235
716M
}
exceptions.c:_Py_TYPE_impl
Line
Count
Source
233
127M
{
234
127M
    return ob->ob_type;
235
127M
}
genericaliasobject.c:_Py_TYPE_impl
Line
Count
Source
233
3.56k
{
234
3.56k
    return ob->ob_type;
235
3.56k
}
floatobject.c:_Py_TYPE_impl
Line
Count
Source
233
44.6M
{
234
44.6M
    return ob->ob_type;
235
44.6M
}
listobject.c:_Py_TYPE_impl
Line
Count
Source
233
678M
{
234
678M
    return ob->ob_type;
235
678M
}
longobject.c:_Py_TYPE_impl
Line
Count
Source
233
2.14G
{
234
2.14G
    return ob->ob_type;
235
2.14G
}
dictobject.c:_Py_TYPE_impl
Line
Count
Source
233
2.81G
{
234
2.81G
    return ob->ob_type;
235
2.81G
}
memoryobject.c:_Py_TYPE_impl
Line
Count
Source
233
313k
{
234
313k
    return ob->ob_type;
235
313k
}
moduleobject.c:_Py_TYPE_impl
Line
Count
Source
233
37.4M
{
234
37.4M
    return ob->ob_type;
235
37.4M
}
object.c:_Py_TYPE_impl
Line
Count
Source
233
7.88G
{
234
7.88G
    return ob->ob_type;
235
7.88G
}
Unexecuted instantiation: obmalloc.c:_Py_TYPE_impl
Unexecuted instantiation: picklebufobject.c:_Py_TYPE_impl
rangeobject.c:_Py_TYPE_impl
Line
Count
Source
233
5.94M
{
234
5.94M
    return ob->ob_type;
235
5.94M
}
sentinelobject.c:_Py_TYPE_impl
Line
Count
Source
233
61
{
234
61
    return ob->ob_type;
235
61
}
setobject.c:_Py_TYPE_impl
Line
Count
Source
233
169M
{
234
169M
    return ob->ob_type;
235
169M
}
sliceobject.c:_Py_TYPE_impl
Line
Count
Source
233
1.98M
{
234
1.98M
    return ob->ob_type;
235
1.98M
}
structseq.c:_Py_TYPE_impl
Line
Count
Source
233
636k
{
234
636k
    return ob->ob_type;
235
636k
}
templateobject.c:_Py_TYPE_impl
Line
Count
Source
233
22
{
234
22
    return ob->ob_type;
235
22
}
tupleobject.c:_Py_TYPE_impl
Line
Count
Source
233
1.66G
{
234
1.66G
    return ob->ob_type;
235
1.66G
}
typeobject.c:_Py_TYPE_impl
Line
Count
Source
233
1.86G
{
234
1.86G
    return ob->ob_type;
235
1.86G
}
typevarobject.c:_Py_TYPE_impl
Line
Count
Source
233
533k
{
234
533k
    return ob->ob_type;
235
533k
}
unicode_format.c:_Py_TYPE_impl
Line
Count
Source
233
86.3M
{
234
86.3M
    return ob->ob_type;
235
86.3M
}
unicode_formatter.c:_Py_TYPE_impl
Line
Count
Source
233
17.9M
{
234
17.9M
    return ob->ob_type;
235
17.9M
}
unicode_writer.c:_Py_TYPE_impl
Line
Count
Source
233
13.2M
{
234
13.2M
    return ob->ob_type;
235
13.2M
}
Unexecuted instantiation: unicodectype.c:_Py_TYPE_impl
unicodeobject.c:_Py_TYPE_impl
Line
Count
Source
233
2.35G
{
234
2.35G
    return ob->ob_type;
235
2.35G
}
unionobject.c:_Py_TYPE_impl
Line
Count
Source
233
6.97k
{
234
6.97k
    return ob->ob_type;
235
6.97k
}
weakrefobject.c:_Py_TYPE_impl
Line
Count
Source
233
161M
{
234
161M
    return ob->ob_type;
235
161M
}
_warnings.c:_Py_TYPE_impl
Line
Count
Source
233
14.2M
{
234
14.2M
    return ob->ob_type;
235
14.2M
}
bltinmodule.c:_Py_TYPE_impl
Line
Count
Source
233
1.79G
{
234
1.79G
    return ob->ob_type;
235
1.79G
}
ceval.c:_Py_TYPE_impl
Line
Count
Source
233
12.0G
{
234
12.0G
    return ob->ob_type;
235
12.0G
}
codecs.c:_Py_TYPE_impl
Line
Count
Source
233
12.9M
{
234
12.9M
    return ob->ob_type;
235
12.9M
}
codegen.c:_Py_TYPE_impl
Line
Count
Source
233
328
{
234
328
    return ob->ob_type;
235
328
}
compile.c:_Py_TYPE_impl
Line
Count
Source
233
89.2k
{
234
89.2k
    return ob->ob_type;
235
89.2k
}
context.c:_Py_TYPE_impl
Line
Count
Source
233
89.5k
{
234
89.5k
    return ob->ob_type;
235
89.5k
}
errors.c:_Py_TYPE_impl
Line
Count
Source
233
570M
{
234
570M
    return ob->ob_type;
235
570M
}
flowgraph.c:_Py_TYPE_impl
Line
Count
Source
233
90.3k
{
234
90.3k
    return ob->ob_type;
235
90.3k
}
Unexecuted instantiation: frame.c:_Py_TYPE_impl
Unexecuted instantiation: future.c:_Py_TYPE_impl
gc.c:_Py_TYPE_impl
Line
Count
Source
233
4.36G
{
234
4.36G
    return ob->ob_type;
235
4.36G
}
Unexecuted instantiation: gc_gil.c:_Py_TYPE_impl
getargs.c:_Py_TYPE_impl
Line
Count
Source
233
36.8M
{
234
36.8M
    return ob->ob_type;
235
36.8M
}
Unexecuted instantiation: ceval_gil.c:_Py_TYPE_impl
Unexecuted instantiation: hamt.c:_Py_TYPE_impl
Unexecuted instantiation: hashtable.c:_Py_TYPE_impl
import.c:_Py_TYPE_impl
Line
Count
Source
233
2.29M
{
234
2.29M
    return ob->ob_type;
235
2.29M
}
importdl.c:_Py_TYPE_impl
Line
Count
Source
233
2.29k
{
234
2.29k
    return ob->ob_type;
235
2.29k
}
initconfig.c:_Py_TYPE_impl
Line
Count
Source
233
1.00k
{
234
1.00k
    return ob->ob_type;
235
1.00k
}
Unexecuted instantiation: instrumentation.c:_Py_TYPE_impl
Unexecuted instantiation: instruction_sequence.c:_Py_TYPE_impl
intrinsics.c:_Py_TYPE_impl
Line
Count
Source
233
82.6k
{
234
82.6k
    return ob->ob_type;
235
82.6k
}
Unexecuted instantiation: legacy_tracing.c:_Py_TYPE_impl
Unexecuted instantiation: lock.c:_Py_TYPE_impl
marshal.c:_Py_TYPE_impl
Line
Count
Source
233
207k
{
234
207k
    return ob->ob_type;
235
207k
}
modsupport.c:_Py_TYPE_impl
Line
Count
Source
233
19.2M
{
234
19.2M
    return ob->ob_type;
235
19.2M
}
Unexecuted instantiation: mysnprintf.c:_Py_TYPE_impl
Unexecuted instantiation: parking_lot.c:_Py_TYPE_impl
Unexecuted instantiation: preconfig.c:_Py_TYPE_impl
Unexecuted instantiation: pyarena.c:_Py_TYPE_impl
Unexecuted instantiation: pyctype.c:_Py_TYPE_impl
Unexecuted instantiation: pyhash.c:_Py_TYPE_impl
pylifecycle.c:_Py_TYPE_impl
Line
Count
Source
233
36
{
234
36
    return ob->ob_type;
235
36
}
Unexecuted instantiation: pymath.c:_Py_TYPE_impl
Unexecuted instantiation: pystate.c:_Py_TYPE_impl
pythonrun.c:_Py_TYPE_impl
Line
Count
Source
233
125k
{
234
125k
    return ob->ob_type;
235
125k
}
Unexecuted instantiation: pytime.c:_Py_TYPE_impl
Unexecuted instantiation: qsbr.c:_Py_TYPE_impl
Unexecuted instantiation: bootstrap_hash.c:_Py_TYPE_impl
specialize.c:_Py_TYPE_impl
Line
Count
Source
233
196M
{
234
196M
    return ob->ob_type;
235
196M
}
Unexecuted instantiation: slots.c:_Py_TYPE_impl
Unexecuted instantiation: slots_generated.c:_Py_TYPE_impl
structmember.c:_Py_TYPE_impl
Line
Count
Source
233
5
{
234
5
    return ob->ob_type;
235
5
}
symtable.c:_Py_TYPE_impl
Line
Count
Source
233
51.5k
{
234
51.5k
    return ob->ob_type;
235
51.5k
}
sysmodule.c:_Py_TYPE_impl
Line
Count
Source
233
866k
{
234
866k
    return ob->ob_type;
235
866k
}
Unexecuted instantiation: thread.c:_Py_TYPE_impl
traceback.c:_Py_TYPE_impl
Line
Count
Source
233
92.0M
{
234
92.0M
    return ob->ob_type;
235
92.0M
}
Unexecuted instantiation: tracemalloc.c:_Py_TYPE_impl
Unexecuted instantiation: getopt.c:_Py_TYPE_impl
Unexecuted instantiation: pystrcmp.c:_Py_TYPE_impl
Unexecuted instantiation: pystrtod.c:_Py_TYPE_impl
Unexecuted instantiation: pystrhex.c:_Py_TYPE_impl
Unexecuted instantiation: dtoa.c:_Py_TYPE_impl
Unexecuted instantiation: fileutils.c:_Py_TYPE_impl
Unexecuted instantiation: suggestions.c:_Py_TYPE_impl
Unexecuted instantiation: perf_trampoline.c:_Py_TYPE_impl
Unexecuted instantiation: perf_jit_trampoline.c:_Py_TYPE_impl
Unexecuted instantiation: jit_unwind.c:_Py_TYPE_impl
Unexecuted instantiation: remote_debugging.c:_Py_TYPE_impl
Unexecuted instantiation: dynload_shlib.c:_Py_TYPE_impl
Unexecuted instantiation: config.c:_Py_TYPE_impl
Unexecuted instantiation: gcmodule.c:_Py_TYPE_impl
Unexecuted instantiation: _asynciomodule.c:_Py_TYPE_impl
Unexecuted instantiation: atexitmodule.c:_Py_TYPE_impl
Unexecuted instantiation: faulthandler.c:_Py_TYPE_impl
posixmodule.c:_Py_TYPE_impl
Line
Count
Source
233
3.33M
{
234
3.33M
    return ob->ob_type;
235
3.33M
}
Unexecuted instantiation: signalmodule.c:_Py_TYPE_impl
Unexecuted instantiation: _tracemalloc.c:_Py_TYPE_impl
Unexecuted instantiation: _suggestions.c:_Py_TYPE_impl
_datetimemodule.c:_Py_TYPE_impl
Line
Count
Source
233
85.9k
{
234
85.9k
    return ob->ob_type;
235
85.9k
}
_codecsmodule.c:_Py_TYPE_impl
Line
Count
Source
233
2.26M
{
234
2.26M
    return ob->ob_type;
235
2.26M
}
_collectionsmodule.c:_Py_TYPE_impl
Line
Count
Source
233
252k
{
234
252k
    return ob->ob_type;
235
252k
}
Unexecuted instantiation: errnomodule.c:_Py_TYPE_impl
_iomodule.c:_Py_TYPE_impl
Line
Count
Source
233
55.2k
{
234
55.2k
    return ob->ob_type;
235
55.2k
}
iobase.c:_Py_TYPE_impl
Line
Count
Source
233
59.8k
{
234
59.8k
    return ob->ob_type;
235
59.8k
}
fileio.c:_Py_TYPE_impl
Line
Count
Source
233
82.2k
{
234
82.2k
    return ob->ob_type;
235
82.2k
}
bytesio.c:_Py_TYPE_impl
Line
Count
Source
233
125k
{
234
125k
    return ob->ob_type;
235
125k
}
bufferedio.c:_Py_TYPE_impl
Line
Count
Source
233
1.51M
{
234
1.51M
    return ob->ob_type;
235
1.51M
}
textio.c:_Py_TYPE_impl
Line
Count
Source
233
437k
{
234
437k
    return ob->ob_type;
235
437k
}
stringio.c:_Py_TYPE_impl
Line
Count
Source
233
19.5M
{
234
19.5M
    return ob->ob_type;
235
19.5M
}
itertoolsmodule.c:_Py_TYPE_impl
Line
Count
Source
233
9.32k
{
234
9.32k
    return ob->ob_type;
235
9.32k
}
sre.c:_Py_TYPE_impl
Line
Count
Source
233
148M
{
234
148M
    return ob->ob_type;
235
148M
}
Unexecuted instantiation: _sysconfig.c:_Py_TYPE_impl
_threadmodule.c:_Py_TYPE_impl
Line
Count
Source
233
32.3M
{
234
32.3M
    return ob->ob_type;
235
32.3M
}
Unexecuted instantiation: timemodule.c:_Py_TYPE_impl
Unexecuted instantiation: _typesmodule.c:_Py_TYPE_impl
Unexecuted instantiation: _typingmodule.c:_Py_TYPE_impl
_weakref.c:_Py_TYPE_impl
Line
Count
Source
233
45.0k
{
234
45.0k
    return ob->ob_type;
235
45.0k
}
_abc.c:_Py_TYPE_impl
Line
Count
Source
233
406k
{
234
406k
    return ob->ob_type;
235
406k
}
_functoolsmodule.c:_Py_TYPE_impl
Line
Count
Source
233
140k
{
234
140k
    return ob->ob_type;
235
140k
}
Unexecuted instantiation: _localemodule.c:_Py_TYPE_impl
Unexecuted instantiation: _opcode.c:_Py_TYPE_impl
_operator.c:_Py_TYPE_impl
Line
Count
Source
233
1.73M
{
234
1.73M
    return ob->ob_type;
235
1.73M
}
_stat.c:_Py_TYPE_impl
Line
Count
Source
233
3.19k
{
234
3.19k
    return ob->ob_type;
235
3.19k
}
Unexecuted instantiation: symtablemodule.c:_Py_TYPE_impl
Unexecuted instantiation: pwdmodule.c:_Py_TYPE_impl
getpath.c:_Py_TYPE_impl
Line
Count
Source
233
900
{
234
900
    return ob->ob_type;
235
900
}
Unexecuted instantiation: frozen.c:_Py_TYPE_impl
Unexecuted instantiation: getbuildinfo.c:_Py_TYPE_impl
Unexecuted instantiation: peg_api.c:_Py_TYPE_impl
Unexecuted instantiation: file_tokenizer.c:_Py_TYPE_impl
Unexecuted instantiation: helpers.c:_Py_TYPE_impl
Unexecuted instantiation: myreadline.c:_Py_TYPE_impl
abstract.c:_Py_TYPE_impl
Line
Count
Source
233
4.65G
{
234
4.65G
    return ob->ob_type;
235
4.65G
}
boolobject.c:_Py_TYPE_impl
Line
Count
Source
233
244
{
234
244
    return ob->ob_type;
235
244
}
bytes_methods.c:_Py_TYPE_impl
Line
Count
Source
233
4.41M
{
234
4.41M
    return ob->ob_type;
235
4.41M
}
bytearrayobject.c:_Py_TYPE_impl
Line
Count
Source
233
419M
{
234
419M
    return ob->ob_type;
235
419M
}
capsule.c:_Py_TYPE_impl
Line
Count
Source
233
6.95k
{
234
6.95k
    return ob->ob_type;
235
6.95k
}
cellobject.c:_Py_TYPE_impl
Line
Count
Source
233
9.31k
{
234
9.31k
    return ob->ob_type;
235
9.31k
}
classobject.c:_Py_TYPE_impl
Line
Count
Source
233
188
{
234
188
    return ob->ob_type;
235
188
}
codeobject.c:_Py_TYPE_impl
Line
Count
Source
233
5.73M
{
234
5.73M
    return ob->ob_type;
235
5.73M
}
complexobject.c:_Py_TYPE_impl
Line
Count
Source
233
11.9k
{
234
11.9k
    return ob->ob_type;
235
11.9k
}
descrobject.c:_Py_TYPE_impl
Line
Count
Source
233
675M
{
234
675M
    return ob->ob_type;
235
675M
}
enumobject.c:_Py_TYPE_impl
Line
Count
Source
233
98.3M
{
234
98.3M
    return ob->ob_type;
235
98.3M
}
genobject.c:_Py_TYPE_impl
Line
Count
Source
233
104M
{
234
104M
    return ob->ob_type;
235
104M
}
fileobject.c:_Py_TYPE_impl
Line
Count
Source
233
6.16k
{
234
6.16k
    return ob->ob_type;
235
6.16k
}
frameobject.c:_Py_TYPE_impl
Line
Count
Source
233
88
{
234
88
    return ob->ob_type;
235
88
}
funcobject.c:_Py_TYPE_impl
Line
Count
Source
233
123k
{
234
123k
    return ob->ob_type;
235
123k
}
interpolationobject.c:_Py_TYPE_impl
Line
Count
Source
233
8
{
234
8
    return ob->ob_type;
235
8
}
iterobject.c:_Py_TYPE_impl
Line
Count
Source
233
3.32M
{
234
3.32M
    return ob->ob_type;
235
3.32M
}
lazyimportobject.c:_Py_TYPE_impl
Line
Count
Source
233
804
{
234
804
    return ob->ob_type;
235
804
}
odictobject.c:_Py_TYPE_impl
Line
Count
Source
233
28.9k
{
234
28.9k
    return ob->ob_type;
235
28.9k
}
methodobject.c:_Py_TYPE_impl
Line
Count
Source
233
246k
{
234
246k
    return ob->ob_type;
235
246k
}
namespaceobject.c:_Py_TYPE_impl
Line
Count
Source
233
713
{
234
713
    return ob->ob_type;
235
713
}
Unexecuted instantiation: _contextvars.c:_Py_TYPE_impl
Python-ast.c:_Py_TYPE_impl
Line
Count
Source
233
1.42M
{
234
1.42M
    return ob->ob_type;
235
1.42M
}
Python-tokenize.c:_Py_TYPE_impl
Line
Count
Source
233
24
{
234
24
    return ob->ob_type;
235
24
}
Unexecuted instantiation: asdl.c:_Py_TYPE_impl
Unexecuted instantiation: assemble.c:_Py_TYPE_impl
ast.c:_Py_TYPE_impl
Line
Count
Source
233
5.79k
{
234
5.79k
    return ob->ob_type;
235
5.79k
}
ast_preprocess.c:_Py_TYPE_impl
Line
Count
Source
233
98
{
234
98
    return ob->ob_type;
235
98
}
Unexecuted instantiation: ast_unparse.c:_Py_TYPE_impl
Unexecuted instantiation: critical_section.c:_Py_TYPE_impl
crossinterp.c:_Py_TYPE_impl
Line
Count
Source
233
36
{
234
36
    return ob->ob_type;
235
36
}
Unexecuted instantiation: getcopyright.c:_Py_TYPE_impl
Unexecuted instantiation: getplatform.c:_Py_TYPE_impl
Unexecuted instantiation: getversion.c:_Py_TYPE_impl
Unexecuted instantiation: optimizer.c:_Py_TYPE_impl
Unexecuted instantiation: pathconfig.c:_Py_TYPE_impl
pegen.c:_Py_TYPE_impl
Line
Count
Source
233
157k
{
234
157k
    return ob->ob_type;
235
157k
}
Unexecuted instantiation: pegen_errors.c:_Py_TYPE_impl
Unexecuted instantiation: parser.c:_Py_TYPE_impl
Unexecuted instantiation: buffer.c:_Py_TYPE_impl
Unexecuted instantiation: lexer.c:_Py_TYPE_impl
Unexecuted instantiation: number.c:_Py_TYPE_impl
Unexecuted instantiation: state.c:_Py_TYPE_impl
Unexecuted instantiation: string.c:_Py_TYPE_impl
readline_tokenizer.c:_Py_TYPE_impl
Line
Count
Source
233
344
{
234
344
    return ob->ob_type;
235
344
}
Unexecuted instantiation: string_tokenizer.c:_Py_TYPE_impl
Unexecuted instantiation: utf8_tokenizer.c:_Py_TYPE_impl
Unexecuted instantiation: getcompiler.c:_Py_TYPE_impl
Unexecuted instantiation: mystrtoul.c:_Py_TYPE_impl
Unexecuted instantiation: token.c:_Py_TYPE_impl
action_helpers.c:_Py_TYPE_impl
Line
Count
Source
233
149k
{
234
149k
    return ob->ob_type;
235
149k
}
Unexecuted instantiation: string_parser.c:_Py_TYPE_impl
236
237
// bpo-39573: The Py_SET_SIZE() function must be used to set an object size.
238
static inline Py_ssize_t
239
_Py_SIZE_impl(PyObject *ob)
240
10.4G
{
241
10.4G
    assert(Py_TYPE(ob) != &PyLong_Type);
242
10.4G
    assert(Py_TYPE(ob) != &PyBool_Type);
243
10.4G
    return  _PyVarObject_CAST(ob)->ob_size;
244
10.4G
}
bytesobject.c:_Py_SIZE_impl
Line
Count
Source
240
509M
{
241
509M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
509M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
509M
    return  _PyVarObject_CAST(ob)->ob_size;
244
509M
}
call.c:_Py_SIZE_impl
Line
Count
Source
240
98.0M
{
241
98.0M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
98.0M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
98.0M
    return  _PyVarObject_CAST(ob)->ob_size;
244
98.0M
}
exceptions.c:_Py_SIZE_impl
Line
Count
Source
240
20.9M
{
241
20.9M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
20.9M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
20.9M
    return  _PyVarObject_CAST(ob)->ob_size;
244
20.9M
}
genericaliasobject.c:_Py_SIZE_impl
Line
Count
Source
240
534
{
241
534
    assert(Py_TYPE(ob) != &PyLong_Type);
242
534
    assert(Py_TYPE(ob) != &PyBool_Type);
243
534
    return  _PyVarObject_CAST(ob)->ob_size;
244
534
}
floatobject.c:_Py_SIZE_impl
Line
Count
Source
240
490k
{
241
490k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
490k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
490k
    return  _PyVarObject_CAST(ob)->ob_size;
244
490k
}
listobject.c:_Py_SIZE_impl
Line
Count
Source
240
2.63G
{
241
2.63G
    assert(Py_TYPE(ob) != &PyLong_Type);
242
2.63G
    assert(Py_TYPE(ob) != &PyBool_Type);
243
2.63G
    return  _PyVarObject_CAST(ob)->ob_size;
244
2.63G
}
longobject.c:_Py_SIZE_impl
Line
Count
Source
240
24.4M
{
241
24.4M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
24.4M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
24.4M
    return  _PyVarObject_CAST(ob)->ob_size;
244
24.4M
}
dictobject.c:_Py_SIZE_impl
Line
Count
Source
240
129k
{
241
129k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
129k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
129k
    return  _PyVarObject_CAST(ob)->ob_size;
244
129k
}
memoryobject.c:_Py_SIZE_impl
Line
Count
Source
240
128k
{
241
128k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
128k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
128k
    return  _PyVarObject_CAST(ob)->ob_size;
244
128k
}
moduleobject.c:_Py_SIZE_impl
Line
Count
Source
240
6.79k
{
241
6.79k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
6.79k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
6.79k
    return  _PyVarObject_CAST(ob)->ob_size;
244
6.79k
}
object.c:_Py_SIZE_impl
Line
Count
Source
240
7.37M
{
241
7.37M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
7.37M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
7.37M
    return  _PyVarObject_CAST(ob)->ob_size;
244
7.37M
}
Unexecuted instantiation: obmalloc.c:_Py_SIZE_impl
Unexecuted instantiation: picklebufobject.c:_Py_SIZE_impl
Unexecuted instantiation: rangeobject.c:_Py_SIZE_impl
sentinelobject.c:_Py_SIZE_impl
Line
Count
Source
240
53
{
241
53
    assert(Py_TYPE(ob) != &PyLong_Type);
242
53
    assert(Py_TYPE(ob) != &PyBool_Type);
243
53
    return  _PyVarObject_CAST(ob)->ob_size;
244
53
}
Unexecuted instantiation: setobject.c:_Py_SIZE_impl
Unexecuted instantiation: sliceobject.c:_Py_SIZE_impl
structseq.c:_Py_SIZE_impl
Line
Count
Source
240
281k
{
241
281k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
281k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
281k
    return  _PyVarObject_CAST(ob)->ob_size;
244
281k
}
Unexecuted instantiation: templateobject.c:_Py_SIZE_impl
tupleobject.c:_Py_SIZE_impl
Line
Count
Source
240
3.88G
{
241
3.88G
    assert(Py_TYPE(ob) != &PyLong_Type);
242
3.88G
    assert(Py_TYPE(ob) != &PyBool_Type);
243
3.88G
    return  _PyVarObject_CAST(ob)->ob_size;
244
3.88G
}
typeobject.c:_Py_SIZE_impl
Line
Count
Source
240
1.07G
{
241
1.07G
    assert(Py_TYPE(ob) != &PyLong_Type);
242
1.07G
    assert(Py_TYPE(ob) != &PyBool_Type);
243
1.07G
    return  _PyVarObject_CAST(ob)->ob_size;
244
1.07G
}
typevarobject.c:_Py_SIZE_impl
Line
Count
Source
240
1.18k
{
241
1.18k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
1.18k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
1.18k
    return  _PyVarObject_CAST(ob)->ob_size;
244
1.18k
}
Unexecuted instantiation: unicode_format.c:_Py_SIZE_impl
Unexecuted instantiation: unicode_formatter.c:_Py_SIZE_impl
Unexecuted instantiation: unicode_writer.c:_Py_SIZE_impl
Unexecuted instantiation: unicodectype.c:_Py_SIZE_impl
unicodeobject.c:_Py_SIZE_impl
Line
Count
Source
240
82.1M
{
241
82.1M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
82.1M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
82.1M
    return  _PyVarObject_CAST(ob)->ob_size;
244
82.1M
}
unionobject.c:_Py_SIZE_impl
Line
Count
Source
240
1.67k
{
241
1.67k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
1.67k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
1.67k
    return  _PyVarObject_CAST(ob)->ob_size;
244
1.67k
}
Unexecuted instantiation: weakrefobject.c:_Py_SIZE_impl
_warnings.c:_Py_SIZE_impl
Line
Count
Source
240
1.01M
{
241
1.01M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
1.01M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
1.01M
    return  _PyVarObject_CAST(ob)->ob_size;
244
1.01M
}
bltinmodule.c:_Py_SIZE_impl
Line
Count
Source
240
62.8M
{
241
62.8M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
62.8M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
62.8M
    return  _PyVarObject_CAST(ob)->ob_size;
244
62.8M
}
ceval.c:_Py_SIZE_impl
Line
Count
Source
240
1.31G
{
241
1.31G
    assert(Py_TYPE(ob) != &PyLong_Type);
242
1.31G
    assert(Py_TYPE(ob) != &PyBool_Type);
243
1.31G
    return  _PyVarObject_CAST(ob)->ob_size;
244
1.31G
}
codecs.c:_Py_SIZE_impl
Line
Count
Source
240
2.31M
{
241
2.31M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
2.31M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
2.31M
    return  _PyVarObject_CAST(ob)->ob_size;
244
2.31M
}
codegen.c:_Py_SIZE_impl
Line
Count
Source
240
174
{
241
174
    assert(Py_TYPE(ob) != &PyLong_Type);
242
174
    assert(Py_TYPE(ob) != &PyBool_Type);
243
174
    return  _PyVarObject_CAST(ob)->ob_size;
244
174
}
compile.c:_Py_SIZE_impl
Line
Count
Source
240
23.9k
{
241
23.9k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
23.9k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
23.9k
    return  _PyVarObject_CAST(ob)->ob_size;
244
23.9k
}
Unexecuted instantiation: context.c:_Py_SIZE_impl
Unexecuted instantiation: errors.c:_Py_SIZE_impl
flowgraph.c:_Py_SIZE_impl
Line
Count
Source
240
92.6k
{
241
92.6k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
92.6k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
92.6k
    return  _PyVarObject_CAST(ob)->ob_size;
244
92.6k
}
Unexecuted instantiation: frame.c:_Py_SIZE_impl
Unexecuted instantiation: future.c:_Py_SIZE_impl
gc.c:_Py_SIZE_impl
Line
Count
Source
240
383k
{
241
383k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
383k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
383k
    return  _PyVarObject_CAST(ob)->ob_size;
244
383k
}
Unexecuted instantiation: gc_gil.c:_Py_SIZE_impl
getargs.c:_Py_SIZE_impl
Line
Count
Source
240
21.5M
{
241
21.5M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
21.5M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
21.5M
    return  _PyVarObject_CAST(ob)->ob_size;
244
21.5M
}
Unexecuted instantiation: ceval_gil.c:_Py_SIZE_impl
Unexecuted instantiation: hamt.c:_Py_SIZE_impl
Unexecuted instantiation: hashtable.c:_Py_SIZE_impl
import.c:_Py_SIZE_impl
Line
Count
Source
240
542
{
241
542
    assert(Py_TYPE(ob) != &PyLong_Type);
242
542
    assert(Py_TYPE(ob) != &PyBool_Type);
243
542
    return  _PyVarObject_CAST(ob)->ob_size;
244
542
}
Unexecuted instantiation: importdl.c:_Py_SIZE_impl
initconfig.c:_Py_SIZE_impl
Line
Count
Source
240
144
{
241
144
    assert(Py_TYPE(ob) != &PyLong_Type);
242
144
    assert(Py_TYPE(ob) != &PyBool_Type);
243
144
    return  _PyVarObject_CAST(ob)->ob_size;
244
144
}
Unexecuted instantiation: instrumentation.c:_Py_SIZE_impl
Unexecuted instantiation: instruction_sequence.c:_Py_SIZE_impl
Unexecuted instantiation: intrinsics.c:_Py_SIZE_impl
Unexecuted instantiation: legacy_tracing.c:_Py_SIZE_impl
Unexecuted instantiation: lock.c:_Py_SIZE_impl
marshal.c:_Py_SIZE_impl
Line
Count
Source
240
1.82M
{
241
1.82M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
1.82M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
1.82M
    return  _PyVarObject_CAST(ob)->ob_size;
244
1.82M
}
Unexecuted instantiation: modsupport.c:_Py_SIZE_impl
Unexecuted instantiation: mysnprintf.c:_Py_SIZE_impl
Unexecuted instantiation: parking_lot.c:_Py_SIZE_impl
Unexecuted instantiation: preconfig.c:_Py_SIZE_impl
Unexecuted instantiation: pyarena.c:_Py_SIZE_impl
Unexecuted instantiation: pyctype.c:_Py_SIZE_impl
Unexecuted instantiation: pyhash.c:_Py_SIZE_impl
Unexecuted instantiation: pylifecycle.c:_Py_SIZE_impl
Unexecuted instantiation: pymath.c:_Py_SIZE_impl
Unexecuted instantiation: pystate.c:_Py_SIZE_impl
pythonrun.c:_Py_SIZE_impl
Line
Count
Source
240
21.8k
{
241
21.8k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
21.8k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
21.8k
    return  _PyVarObject_CAST(ob)->ob_size;
244
21.8k
}
Unexecuted instantiation: pytime.c:_Py_SIZE_impl
Unexecuted instantiation: qsbr.c:_Py_SIZE_impl
Unexecuted instantiation: bootstrap_hash.c:_Py_SIZE_impl
specialize.c:_Py_SIZE_impl
Line
Count
Source
240
8.99k
{
241
8.99k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
8.99k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
8.99k
    return  _PyVarObject_CAST(ob)->ob_size;
244
8.99k
}
Unexecuted instantiation: slots.c:_Py_SIZE_impl
Unexecuted instantiation: slots_generated.c:_Py_SIZE_impl
Unexecuted instantiation: structmember.c:_Py_SIZE_impl
symtable.c:_Py_SIZE_impl
Line
Count
Source
240
26.3k
{
241
26.3k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
26.3k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
26.3k
    return  _PyVarObject_CAST(ob)->ob_size;
244
26.3k
}
Unexecuted instantiation: sysmodule.c:_Py_SIZE_impl
Unexecuted instantiation: thread.c:_Py_SIZE_impl
Unexecuted instantiation: traceback.c:_Py_SIZE_impl
Unexecuted instantiation: tracemalloc.c:_Py_SIZE_impl
Unexecuted instantiation: getopt.c:_Py_SIZE_impl
Unexecuted instantiation: pystrcmp.c:_Py_SIZE_impl
Unexecuted instantiation: pystrtod.c:_Py_SIZE_impl
Unexecuted instantiation: pystrhex.c:_Py_SIZE_impl
Unexecuted instantiation: dtoa.c:_Py_SIZE_impl
Unexecuted instantiation: fileutils.c:_Py_SIZE_impl
Unexecuted instantiation: suggestions.c:_Py_SIZE_impl
Unexecuted instantiation: perf_trampoline.c:_Py_SIZE_impl
Unexecuted instantiation: perf_jit_trampoline.c:_Py_SIZE_impl
Unexecuted instantiation: jit_unwind.c:_Py_SIZE_impl
Unexecuted instantiation: remote_debugging.c:_Py_SIZE_impl
Unexecuted instantiation: dynload_shlib.c:_Py_SIZE_impl
Unexecuted instantiation: config.c:_Py_SIZE_impl
Unexecuted instantiation: gcmodule.c:_Py_SIZE_impl
Unexecuted instantiation: _asynciomodule.c:_Py_SIZE_impl
atexitmodule.c:_Py_SIZE_impl
Line
Count
Source
240
4
{
241
4
    assert(Py_TYPE(ob) != &PyLong_Type);
242
4
    assert(Py_TYPE(ob) != &PyBool_Type);
243
4
    return  _PyVarObject_CAST(ob)->ob_size;
244
4
}
Unexecuted instantiation: faulthandler.c:_Py_SIZE_impl
posixmodule.c:_Py_SIZE_impl
Line
Count
Source
240
945k
{
241
945k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
945k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
945k
    return  _PyVarObject_CAST(ob)->ob_size;
244
945k
}
Unexecuted instantiation: signalmodule.c:_Py_SIZE_impl
Unexecuted instantiation: _tracemalloc.c:_Py_SIZE_impl
Unexecuted instantiation: _suggestions.c:_Py_SIZE_impl
_datetimemodule.c:_Py_SIZE_impl
Line
Count
Source
240
36.9k
{
241
36.9k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
36.9k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
36.9k
    return  _PyVarObject_CAST(ob)->ob_size;
244
36.9k
}
Unexecuted instantiation: _codecsmodule.c:_Py_SIZE_impl
_collectionsmodule.c:_Py_SIZE_impl
Line
Count
Source
240
171M
{
241
171M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
171M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
171M
    return  _PyVarObject_CAST(ob)->ob_size;
244
171M
}
Unexecuted instantiation: errnomodule.c:_Py_SIZE_impl
Unexecuted instantiation: _iomodule.c:_Py_SIZE_impl
Unexecuted instantiation: iobase.c:_Py_SIZE_impl
fileio.c:_Py_SIZE_impl
Line
Count
Source
240
24.6k
{
241
24.6k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
24.6k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
24.6k
    return  _PyVarObject_CAST(ob)->ob_size;
244
24.6k
}
bytesio.c:_Py_SIZE_impl
Line
Count
Source
240
275k
{
241
275k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
275k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
275k
    return  _PyVarObject_CAST(ob)->ob_size;
244
275k
}
bufferedio.c:_Py_SIZE_impl
Line
Count
Source
240
29.5k
{
241
29.5k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
29.5k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
29.5k
    return  _PyVarObject_CAST(ob)->ob_size;
244
29.5k
}
textio.c:_Py_SIZE_impl
Line
Count
Source
240
19.1k
{
241
19.1k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
19.1k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
19.1k
    return  _PyVarObject_CAST(ob)->ob_size;
244
19.1k
}
stringio.c:_Py_SIZE_impl
Line
Count
Source
240
31.9k
{
241
31.9k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
31.9k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
31.9k
    return  _PyVarObject_CAST(ob)->ob_size;
244
31.9k
}
itertoolsmodule.c:_Py_SIZE_impl
Line
Count
Source
240
7.27k
{
241
7.27k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
7.27k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
7.27k
    return  _PyVarObject_CAST(ob)->ob_size;
244
7.27k
}
sre.c:_Py_SIZE_impl
Line
Count
Source
240
143M
{
241
143M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
143M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
143M
    return  _PyVarObject_CAST(ob)->ob_size;
244
143M
}
Unexecuted instantiation: _sysconfig.c:_Py_SIZE_impl
Unexecuted instantiation: _threadmodule.c:_Py_SIZE_impl
Unexecuted instantiation: timemodule.c:_Py_SIZE_impl
Unexecuted instantiation: _typesmodule.c:_Py_SIZE_impl
Unexecuted instantiation: _typingmodule.c:_Py_SIZE_impl
Unexecuted instantiation: _weakref.c:_Py_SIZE_impl
_abc.c:_Py_SIZE_impl
Line
Count
Source
240
55.9k
{
241
55.9k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
55.9k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
55.9k
    return  _PyVarObject_CAST(ob)->ob_size;
244
55.9k
}
_functoolsmodule.c:_Py_SIZE_impl
Line
Count
Source
240
143k
{
241
143k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
143k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
143k
    return  _PyVarObject_CAST(ob)->ob_size;
244
143k
}
Unexecuted instantiation: _localemodule.c:_Py_SIZE_impl
Unexecuted instantiation: _opcode.c:_Py_SIZE_impl
_operator.c:_Py_SIZE_impl
Line
Count
Source
240
1.43M
{
241
1.43M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
1.43M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
1.43M
    return  _PyVarObject_CAST(ob)->ob_size;
244
1.43M
}
Unexecuted instantiation: _stat.c:_Py_SIZE_impl
Unexecuted instantiation: symtablemodule.c:_Py_SIZE_impl
Unexecuted instantiation: pwdmodule.c:_Py_SIZE_impl
getpath.c:_Py_SIZE_impl
Line
Count
Source
240
288
{
241
288
    assert(Py_TYPE(ob) != &PyLong_Type);
242
288
    assert(Py_TYPE(ob) != &PyBool_Type);
243
288
    return  _PyVarObject_CAST(ob)->ob_size;
244
288
}
Unexecuted instantiation: frozen.c:_Py_SIZE_impl
Unexecuted instantiation: getbuildinfo.c:_Py_SIZE_impl
Unexecuted instantiation: peg_api.c:_Py_SIZE_impl
Unexecuted instantiation: file_tokenizer.c:_Py_SIZE_impl
Unexecuted instantiation: helpers.c:_Py_SIZE_impl
Unexecuted instantiation: myreadline.c:_Py_SIZE_impl
abstract.c:_Py_SIZE_impl
Line
Count
Source
240
7.93M
{
241
7.93M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
7.93M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
7.93M
    return  _PyVarObject_CAST(ob)->ob_size;
244
7.93M
}
Unexecuted instantiation: boolobject.c:_Py_SIZE_impl
bytes_methods.c:_Py_SIZE_impl
Line
Count
Source
240
1.93M
{
241
1.93M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
1.93M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
1.93M
    return  _PyVarObject_CAST(ob)->ob_size;
244
1.93M
}
bytearrayobject.c:_Py_SIZE_impl
Line
Count
Source
240
325M
{
241
325M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
325M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
325M
    return  _PyVarObject_CAST(ob)->ob_size;
244
325M
}
Unexecuted instantiation: capsule.c:_Py_SIZE_impl
Unexecuted instantiation: cellobject.c:_Py_SIZE_impl
classobject.c:_Py_SIZE_impl
Line
Count
Source
240
40
{
241
40
    assert(Py_TYPE(ob) != &PyLong_Type);
242
40
    assert(Py_TYPE(ob) != &PyBool_Type);
243
40
    return  _PyVarObject_CAST(ob)->ob_size;
244
40
}
codeobject.c:_Py_SIZE_impl
Line
Count
Source
240
3.57M
{
241
3.57M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
3.57M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
3.57M
    return  _PyVarObject_CAST(ob)->ob_size;
244
3.57M
}
Unexecuted instantiation: complexobject.c:_Py_SIZE_impl
descrobject.c:_Py_SIZE_impl
Line
Count
Source
240
15.4M
{
241
15.4M
    assert(Py_TYPE(ob) != &PyLong_Type);
242
15.4M
    assert(Py_TYPE(ob) != &PyBool_Type);
243
15.4M
    return  _PyVarObject_CAST(ob)->ob_size;
244
15.4M
}
Unexecuted instantiation: enumobject.c:_Py_SIZE_impl
Unexecuted instantiation: genobject.c:_Py_SIZE_impl
Unexecuted instantiation: fileobject.c:_Py_SIZE_impl
frameobject.c:_Py_SIZE_impl
Line
Count
Source
240
44
{
241
44
    assert(Py_TYPE(ob) != &PyLong_Type);
242
44
    assert(Py_TYPE(ob) != &PyBool_Type);
243
44
    return  _PyVarObject_CAST(ob)->ob_size;
244
44
}
funcobject.c:_Py_SIZE_impl
Line
Count
Source
240
7.27k
{
241
7.27k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
7.27k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
7.27k
    return  _PyVarObject_CAST(ob)->ob_size;
244
7.27k
}
Unexecuted instantiation: interpolationobject.c:_Py_SIZE_impl
Unexecuted instantiation: iterobject.c:_Py_SIZE_impl
Unexecuted instantiation: lazyimportobject.c:_Py_SIZE_impl
odictobject.c:_Py_SIZE_impl
Line
Count
Source
240
21.7k
{
241
21.7k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
21.7k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
21.7k
    return  _PyVarObject_CAST(ob)->ob_size;
244
21.7k
}
Unexecuted instantiation: methodobject.c:_Py_SIZE_impl
Unexecuted instantiation: namespaceobject.c:_Py_SIZE_impl
Unexecuted instantiation: _contextvars.c:_Py_SIZE_impl
Python-ast.c:_Py_SIZE_impl
Line
Count
Source
240
490
{
241
490
    assert(Py_TYPE(ob) != &PyLong_Type);
242
490
    assert(Py_TYPE(ob) != &PyBool_Type);
243
490
    return  _PyVarObject_CAST(ob)->ob_size;
244
490
}
Python-tokenize.c:_Py_SIZE_impl
Line
Count
Source
240
20
{
241
20
    assert(Py_TYPE(ob) != &PyLong_Type);
242
20
    assert(Py_TYPE(ob) != &PyBool_Type);
243
20
    return  _PyVarObject_CAST(ob)->ob_size;
244
20
}
Unexecuted instantiation: asdl.c:_Py_SIZE_impl
assemble.c:_Py_SIZE_impl
Line
Count
Source
240
265k
{
241
265k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
265k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
265k
    return  _PyVarObject_CAST(ob)->ob_size;
244
265k
}
Unexecuted instantiation: ast.c:_Py_SIZE_impl
Unexecuted instantiation: ast_preprocess.c:_Py_SIZE_impl
Unexecuted instantiation: ast_unparse.c:_Py_SIZE_impl
Unexecuted instantiation: critical_section.c:_Py_SIZE_impl
Unexecuted instantiation: crossinterp.c:_Py_SIZE_impl
Unexecuted instantiation: getcopyright.c:_Py_SIZE_impl
Unexecuted instantiation: getplatform.c:_Py_SIZE_impl
Unexecuted instantiation: getversion.c:_Py_SIZE_impl
Unexecuted instantiation: optimizer.c:_Py_SIZE_impl
Unexecuted instantiation: pathconfig.c:_Py_SIZE_impl
Unexecuted instantiation: pegen.c:_Py_SIZE_impl
Unexecuted instantiation: pegen_errors.c:_Py_SIZE_impl
Unexecuted instantiation: parser.c:_Py_SIZE_impl
Unexecuted instantiation: buffer.c:_Py_SIZE_impl
lexer.c:_Py_SIZE_impl
Line
Count
Source
240
378
{
241
378
    assert(Py_TYPE(ob) != &PyLong_Type);
242
378
    assert(Py_TYPE(ob) != &PyBool_Type);
243
378
    return  _PyVarObject_CAST(ob)->ob_size;
244
378
}
Unexecuted instantiation: number.c:_Py_SIZE_impl
Unexecuted instantiation: state.c:_Py_SIZE_impl
Unexecuted instantiation: string.c:_Py_SIZE_impl
readline_tokenizer.c:_Py_SIZE_impl
Line
Count
Source
240
4
{
241
4
    assert(Py_TYPE(ob) != &PyLong_Type);
242
4
    assert(Py_TYPE(ob) != &PyBool_Type);
243
4
    return  _PyVarObject_CAST(ob)->ob_size;
244
4
}
Unexecuted instantiation: string_tokenizer.c:_Py_SIZE_impl
Unexecuted instantiation: utf8_tokenizer.c:_Py_SIZE_impl
Unexecuted instantiation: getcompiler.c:_Py_SIZE_impl
Unexecuted instantiation: mystrtoul.c:_Py_SIZE_impl
Unexecuted instantiation: token.c:_Py_SIZE_impl
action_helpers.c:_Py_SIZE_impl
Line
Count
Source
240
5.35k
{
241
5.35k
    assert(Py_TYPE(ob) != &PyLong_Type);
242
5.35k
    assert(Py_TYPE(ob) != &PyBool_Type);
243
5.35k
    return  _PyVarObject_CAST(ob)->ob_size;
244
5.35k
}
Unexecuted instantiation: string_parser.c:_Py_SIZE_impl
245
246
static inline int
247
_Py_IS_TYPE_impl(PyObject *ob, PyTypeObject *type)
248
12.5G
{
249
12.5G
    return Py_TYPE(ob) == type;
250
12.5G
}
bytesobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
96.6M
{
249
96.6M
    return Py_TYPE(ob) == type;
250
96.6M
}
Unexecuted instantiation: call.c:_Py_IS_TYPE_impl
exceptions.c:_Py_IS_TYPE_impl
Line
Count
Source
248
69.1M
{
249
69.1M
    return Py_TYPE(ob) == type;
250
69.1M
}
genericaliasobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
160
{
249
160
    return Py_TYPE(ob) == type;
250
160
}
floatobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
26.3M
{
249
26.3M
    return Py_TYPE(ob) == type;
250
26.3M
}
listobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
394M
{
249
394M
    return Py_TYPE(ob) == type;
250
394M
}
longobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
718M
{
249
718M
    return Py_TYPE(ob) == type;
250
718M
}
dictobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
1.59G
{
249
1.59G
    return Py_TYPE(ob) == type;
250
1.59G
}
memoryobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
159k
{
249
159k
    return Py_TYPE(ob) == type;
250
159k
}
moduleobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
36.2M
{
249
36.2M
    return Py_TYPE(ob) == type;
250
36.2M
}
object.c:_Py_IS_TYPE_impl
Line
Count
Source
248
805M
{
249
805M
    return Py_TYPE(ob) == type;
250
805M
}
Unexecuted instantiation: obmalloc.c:_Py_IS_TYPE_impl
Unexecuted instantiation: picklebufobject.c:_Py_IS_TYPE_impl
rangeobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
1.98M
{
249
1.98M
    return Py_TYPE(ob) == type;
250
1.98M
}
Unexecuted instantiation: sentinelobject.c:_Py_IS_TYPE_impl
setobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
167M
{
249
167M
    return Py_TYPE(ob) == type;
250
167M
}
sliceobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
94
{
249
94
    return Py_TYPE(ob) == type;
250
94
}
Unexecuted instantiation: structseq.c:_Py_IS_TYPE_impl
Unexecuted instantiation: templateobject.c:_Py_IS_TYPE_impl
tupleobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
912M
{
249
912M
    return Py_TYPE(ob) == type;
250
912M
}
typeobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
244M
{
249
244M
    return Py_TYPE(ob) == type;
250
244M
}
typevarobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
16
{
249
16
    return Py_TYPE(ob) == type;
250
16
}
unicode_format.c:_Py_IS_TYPE_impl
Line
Count
Source
248
34.9M
{
249
34.9M
    return Py_TYPE(ob) == type;
250
34.9M
}
unicode_formatter.c:_Py_IS_TYPE_impl
Line
Count
Source
248
17.9M
{
249
17.9M
    return Py_TYPE(ob) == type;
250
17.9M
}
Unexecuted instantiation: unicode_writer.c:_Py_IS_TYPE_impl
Unexecuted instantiation: unicodectype.c:_Py_IS_TYPE_impl
unicodeobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
261M
{
249
261M
    return Py_TYPE(ob) == type;
250
261M
}
unionobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
3.42k
{
249
3.42k
    return Py_TYPE(ob) == type;
250
3.42k
}
weakrefobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
1.94M
{
249
1.94M
    return Py_TYPE(ob) == type;
250
1.94M
}
_warnings.c:_Py_IS_TYPE_impl
Line
Count
Source
248
617k
{
249
617k
    return Py_TYPE(ob) == type;
250
617k
}
bltinmodule.c:_Py_IS_TYPE_impl
Line
Count
Source
248
1.41G
{
249
1.41G
    return Py_TYPE(ob) == type;
250
1.41G
}
ceval.c:_Py_IS_TYPE_impl
Line
Count
Source
248
3.96G
{
249
3.96G
    return Py_TYPE(ob) == type;
250
3.96G
}
codecs.c:_Py_IS_TYPE_impl
Line
Count
Source
248
3.41M
{
249
3.41M
    return Py_TYPE(ob) == type;
250
3.41M
}
codegen.c:_Py_IS_TYPE_impl
Line
Count
Source
248
12
{
249
12
    return Py_TYPE(ob) == type;
250
12
}
compile.c:_Py_IS_TYPE_impl
Line
Count
Source
248
89.2k
{
249
89.2k
    return Py_TYPE(ob) == type;
250
89.2k
}
context.c:_Py_IS_TYPE_impl
Line
Count
Source
248
89.5k
{
249
89.5k
    return Py_TYPE(ob) == type;
250
89.5k
}
Unexecuted instantiation: errors.c:_Py_IS_TYPE_impl
flowgraph.c:_Py_IS_TYPE_impl
Line
Count
Source
248
90.2k
{
249
90.2k
    return Py_TYPE(ob) == type;
250
90.2k
}
Unexecuted instantiation: frame.c:_Py_IS_TYPE_impl
Unexecuted instantiation: future.c:_Py_IS_TYPE_impl
gc.c:_Py_IS_TYPE_impl
Line
Count
Source
248
404M
{
249
404M
    return Py_TYPE(ob) == type;
250
404M
}
Unexecuted instantiation: gc_gil.c:_Py_IS_TYPE_impl
getargs.c:_Py_IS_TYPE_impl
Line
Count
Source
248
10.9M
{
249
10.9M
    return Py_TYPE(ob) == type;
250
10.9M
}
Unexecuted instantiation: ceval_gil.c:_Py_IS_TYPE_impl
Unexecuted instantiation: hamt.c:_Py_IS_TYPE_impl
Unexecuted instantiation: hashtable.c:_Py_IS_TYPE_impl
import.c:_Py_IS_TYPE_impl
Line
Count
Source
248
7.56k
{
249
7.56k
    return Py_TYPE(ob) == type;
250
7.56k
}
importdl.c:_Py_IS_TYPE_impl
Line
Count
Source
248
1.87k
{
249
1.87k
    return Py_TYPE(ob) == type;
250
1.87k
}
initconfig.c:_Py_IS_TYPE_impl
Line
Count
Source
248
288
{
249
288
    return Py_TYPE(ob) == type;
250
288
}
Unexecuted instantiation: instrumentation.c:_Py_IS_TYPE_impl
Unexecuted instantiation: instruction_sequence.c:_Py_IS_TYPE_impl
intrinsics.c:_Py_IS_TYPE_impl
Line
Count
Source
248
40.0k
{
249
40.0k
    return Py_TYPE(ob) == type;
250
40.0k
}
Unexecuted instantiation: legacy_tracing.c:_Py_IS_TYPE_impl
Unexecuted instantiation: lock.c:_Py_IS_TYPE_impl
marshal.c:_Py_IS_TYPE_impl
Line
Count
Source
248
207k
{
249
207k
    return Py_TYPE(ob) == type;
250
207k
}
modsupport.c:_Py_IS_TYPE_impl
Line
Count
Source
248
21.1k
{
249
21.1k
    return Py_TYPE(ob) == type;
250
21.1k
}
Unexecuted instantiation: mysnprintf.c:_Py_IS_TYPE_impl
Unexecuted instantiation: parking_lot.c:_Py_IS_TYPE_impl
Unexecuted instantiation: preconfig.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pyarena.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pyctype.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pyhash.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pylifecycle.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pymath.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pystate.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pythonrun.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pytime.c:_Py_IS_TYPE_impl
Unexecuted instantiation: qsbr.c:_Py_IS_TYPE_impl
Unexecuted instantiation: bootstrap_hash.c:_Py_IS_TYPE_impl
specialize.c:_Py_IS_TYPE_impl
Line
Count
Source
248
178M
{
249
178M
    return Py_TYPE(ob) == type;
250
178M
}
Unexecuted instantiation: slots.c:_Py_IS_TYPE_impl
Unexecuted instantiation: slots_generated.c:_Py_IS_TYPE_impl
structmember.c:_Py_IS_TYPE_impl
Line
Count
Source
248
5
{
249
5
    return Py_TYPE(ob) == type;
250
5
}
Unexecuted instantiation: symtable.c:_Py_IS_TYPE_impl
sysmodule.c:_Py_IS_TYPE_impl
Line
Count
Source
248
1.86k
{
249
1.86k
    return Py_TYPE(ob) == type;
250
1.86k
}
Unexecuted instantiation: thread.c:_Py_IS_TYPE_impl
traceback.c:_Py_IS_TYPE_impl
Line
Count
Source
248
92.0M
{
249
92.0M
    return Py_TYPE(ob) == type;
250
92.0M
}
Unexecuted instantiation: tracemalloc.c:_Py_IS_TYPE_impl
Unexecuted instantiation: getopt.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pystrcmp.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pystrtod.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pystrhex.c:_Py_IS_TYPE_impl
Unexecuted instantiation: dtoa.c:_Py_IS_TYPE_impl
Unexecuted instantiation: fileutils.c:_Py_IS_TYPE_impl
Unexecuted instantiation: suggestions.c:_Py_IS_TYPE_impl
Unexecuted instantiation: perf_trampoline.c:_Py_IS_TYPE_impl
Unexecuted instantiation: perf_jit_trampoline.c:_Py_IS_TYPE_impl
Unexecuted instantiation: jit_unwind.c:_Py_IS_TYPE_impl
Unexecuted instantiation: remote_debugging.c:_Py_IS_TYPE_impl
Unexecuted instantiation: dynload_shlib.c:_Py_IS_TYPE_impl
Unexecuted instantiation: config.c:_Py_IS_TYPE_impl
Unexecuted instantiation: gcmodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: _asynciomodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: atexitmodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: faulthandler.c:_Py_IS_TYPE_impl
posixmodule.c:_Py_IS_TYPE_impl
Line
Count
Source
248
282k
{
249
282k
    return Py_TYPE(ob) == type;
250
282k
}
Unexecuted instantiation: signalmodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: _tracemalloc.c:_Py_IS_TYPE_impl
Unexecuted instantiation: _suggestions.c:_Py_IS_TYPE_impl
_datetimemodule.c:_Py_IS_TYPE_impl
Line
Count
Source
248
24.2k
{
249
24.2k
    return Py_TYPE(ob) == type;
250
24.2k
}
Unexecuted instantiation: _codecsmodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: _collectionsmodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: errnomodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: _iomodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: iobase.c:_Py_IS_TYPE_impl
fileio.c:_Py_IS_TYPE_impl
Line
Count
Source
248
24.6k
{
249
24.6k
    return Py_TYPE(ob) == type;
250
24.6k
}
bytesio.c:_Py_IS_TYPE_impl
Line
Count
Source
248
47.7k
{
249
47.7k
    return Py_TYPE(ob) == type;
250
47.7k
}
bufferedio.c:_Py_IS_TYPE_impl
Line
Count
Source
248
59.1k
{
249
59.1k
    return Py_TYPE(ob) == type;
250
59.1k
}
textio.c:_Py_IS_TYPE_impl
Line
Count
Source
248
118k
{
249
118k
    return Py_TYPE(ob) == type;
250
118k
}
stringio.c:_Py_IS_TYPE_impl
Line
Count
Source
248
19.3M
{
249
19.3M
    return Py_TYPE(ob) == type;
250
19.3M
}
Unexecuted instantiation: itertoolsmodule.c:_Py_IS_TYPE_impl
sre.c:_Py_IS_TYPE_impl
Line
Count
Source
248
400k
{
249
400k
    return Py_TYPE(ob) == type;
250
400k
}
Unexecuted instantiation: _sysconfig.c:_Py_IS_TYPE_impl
_threadmodule.c:_Py_IS_TYPE_impl
Line
Count
Source
248
15.8M
{
249
15.8M
    return Py_TYPE(ob) == type;
250
15.8M
}
Unexecuted instantiation: timemodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: _typesmodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: _typingmodule.c:_Py_IS_TYPE_impl
_weakref.c:_Py_IS_TYPE_impl
Line
Count
Source
248
15.0k
{
249
15.0k
    return Py_TYPE(ob) == type;
250
15.0k
}
_abc.c:_Py_IS_TYPE_impl
Line
Count
Source
248
112k
{
249
112k
    return Py_TYPE(ob) == type;
250
112k
}
_functoolsmodule.c:_Py_IS_TYPE_impl
Line
Count
Source
248
22.4k
{
249
22.4k
    return Py_TYPE(ob) == type;
250
22.4k
}
Unexecuted instantiation: _localemodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: _opcode.c:_Py_IS_TYPE_impl
_operator.c:_Py_IS_TYPE_impl
Line
Count
Source
248
1.43M
{
249
1.43M
    return Py_TYPE(ob) == type;
250
1.43M
}
Unexecuted instantiation: _stat.c:_Py_IS_TYPE_impl
Unexecuted instantiation: symtablemodule.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pwdmodule.c:_Py_IS_TYPE_impl
getpath.c:_Py_IS_TYPE_impl
Line
Count
Source
248
36
{
249
36
    return Py_TYPE(ob) == type;
250
36
}
Unexecuted instantiation: frozen.c:_Py_IS_TYPE_impl
Unexecuted instantiation: getbuildinfo.c:_Py_IS_TYPE_impl
Unexecuted instantiation: peg_api.c:_Py_IS_TYPE_impl
Unexecuted instantiation: file_tokenizer.c:_Py_IS_TYPE_impl
Unexecuted instantiation: helpers.c:_Py_IS_TYPE_impl
Unexecuted instantiation: myreadline.c:_Py_IS_TYPE_impl
abstract.c:_Py_IS_TYPE_impl
Line
Count
Source
248
502M
{
249
502M
    return Py_TYPE(ob) == type;
250
502M
}
boolobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
244
{
249
244
    return Py_TYPE(ob) == type;
250
244
}
Unexecuted instantiation: bytes_methods.c:_Py_IS_TYPE_impl
bytearrayobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
108M
{
249
108M
    return Py_TYPE(ob) == type;
250
108M
}
capsule.c:_Py_IS_TYPE_impl
Line
Count
Source
248
6.95k
{
249
6.95k
    return Py_TYPE(ob) == type;
250
6.95k
}
cellobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
9.31k
{
249
9.31k
    return Py_TYPE(ob) == type;
250
9.31k
}
Unexecuted instantiation: classobject.c:_Py_IS_TYPE_impl
codeobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
3.90M
{
249
3.90M
    return Py_TYPE(ob) == type;
250
3.90M
}
complexobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
11.9k
{
249
11.9k
    return Py_TYPE(ob) == type;
250
11.9k
}
descrobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
329M
{
249
329M
    return Py_TYPE(ob) == type;
250
329M
}
Unexecuted instantiation: enumobject.c:_Py_IS_TYPE_impl
genobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
104M
{
249
104M
    return Py_TYPE(ob) == type;
250
104M
}
Unexecuted instantiation: fileobject.c:_Py_IS_TYPE_impl
frameobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
44
{
249
44
    return Py_TYPE(ob) == type;
250
44
}
funcobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
21.9k
{
249
21.9k
    return Py_TYPE(ob) == type;
250
21.9k
}
Unexecuted instantiation: interpolationobject.c:_Py_IS_TYPE_impl
Unexecuted instantiation: iterobject.c:_Py_IS_TYPE_impl
Unexecuted instantiation: lazyimportobject.c:_Py_IS_TYPE_impl
odictobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
28.9k
{
249
28.9k
    return Py_TYPE(ob) == type;
250
28.9k
}
methodobject.c:_Py_IS_TYPE_impl
Line
Count
Source
248
165k
{
249
165k
    return Py_TYPE(ob) == type;
250
165k
}
Unexecuted instantiation: namespaceobject.c:_Py_IS_TYPE_impl
Unexecuted instantiation: _contextvars.c:_Py_IS_TYPE_impl
Unexecuted instantiation: Python-ast.c:_Py_IS_TYPE_impl
Unexecuted instantiation: Python-tokenize.c:_Py_IS_TYPE_impl
Unexecuted instantiation: asdl.c:_Py_IS_TYPE_impl
Unexecuted instantiation: assemble.c:_Py_IS_TYPE_impl
ast.c:_Py_IS_TYPE_impl
Line
Count
Source
248
5.79k
{
249
5.79k
    return Py_TYPE(ob) == type;
250
5.79k
}
Unexecuted instantiation: ast_preprocess.c:_Py_IS_TYPE_impl
Unexecuted instantiation: ast_unparse.c:_Py_IS_TYPE_impl
Unexecuted instantiation: critical_section.c:_Py_IS_TYPE_impl
Unexecuted instantiation: crossinterp.c:_Py_IS_TYPE_impl
Unexecuted instantiation: getcopyright.c:_Py_IS_TYPE_impl
Unexecuted instantiation: getplatform.c:_Py_IS_TYPE_impl
Unexecuted instantiation: getversion.c:_Py_IS_TYPE_impl
Unexecuted instantiation: optimizer.c:_Py_IS_TYPE_impl
Unexecuted instantiation: pathconfig.c:_Py_IS_TYPE_impl
pegen.c:_Py_IS_TYPE_impl
Line
Count
Source
248
92.4k
{
249
92.4k
    return Py_TYPE(ob) == type;
250
92.4k
}
Unexecuted instantiation: pegen_errors.c:_Py_IS_TYPE_impl
Unexecuted instantiation: parser.c:_Py_IS_TYPE_impl
Unexecuted instantiation: buffer.c:_Py_IS_TYPE_impl
Unexecuted instantiation: lexer.c:_Py_IS_TYPE_impl
Unexecuted instantiation: number.c:_Py_IS_TYPE_impl
Unexecuted instantiation: state.c:_Py_IS_TYPE_impl
Unexecuted instantiation: string.c:_Py_IS_TYPE_impl
Unexecuted instantiation: readline_tokenizer.c:_Py_IS_TYPE_impl
Unexecuted instantiation: string_tokenizer.c:_Py_IS_TYPE_impl
Unexecuted instantiation: utf8_tokenizer.c:_Py_IS_TYPE_impl
Unexecuted instantiation: getcompiler.c:_Py_IS_TYPE_impl
Unexecuted instantiation: mystrtoul.c:_Py_IS_TYPE_impl
Unexecuted instantiation: token.c:_Py_IS_TYPE_impl
action_helpers.c:_Py_IS_TYPE_impl
Line
Count
Source
248
149k
{
249
149k
    return Py_TYPE(ob) == type;
250
149k
}
Unexecuted instantiation: string_parser.c:_Py_IS_TYPE_impl
251
252
static inline void
253
_Py_SET_SIZE_impl(PyVarObject *ob, Py_ssize_t size)
254
1.66G
{
255
1.66G
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
1.66G
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
1.66G
    ob->ob_size = size;
261
1.66G
#endif
262
1.66G
}
bytesobject.c:_Py_SET_SIZE_impl
Line
Count
Source
254
156M
{
255
156M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
156M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
156M
    ob->ob_size = size;
261
156M
#endif
262
156M
}
Unexecuted instantiation: call.c:_Py_SET_SIZE_impl
Unexecuted instantiation: exceptions.c:_Py_SET_SIZE_impl
Unexecuted instantiation: genericaliasobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: floatobject.c:_Py_SET_SIZE_impl
listobject.c:_Py_SET_SIZE_impl
Line
Count
Source
254
685M
{
255
685M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
685M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
685M
    ob->ob_size = size;
261
685M
#endif
262
685M
}
Unexecuted instantiation: longobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: dictobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: memoryobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: moduleobject.c:_Py_SET_SIZE_impl
object.c:_Py_SET_SIZE_impl
Line
Count
Source
254
179k
{
255
179k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
179k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
179k
    ob->ob_size = size;
261
179k
#endif
262
179k
}
Unexecuted instantiation: obmalloc.c:_Py_SET_SIZE_impl
Unexecuted instantiation: picklebufobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: rangeobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: sentinelobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: setobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: sliceobject.c:_Py_SET_SIZE_impl
structseq.c:_Py_SET_SIZE_impl
Line
Count
Source
254
258k
{
255
258k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
258k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
258k
    ob->ob_size = size;
261
258k
#endif
262
258k
}
Unexecuted instantiation: templateobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: tupleobject.c:_Py_SET_SIZE_impl
typeobject.c:_Py_SET_SIZE_impl
Line
Count
Source
254
911k
{
255
911k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
911k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
911k
    ob->ob_size = size;
261
911k
#endif
262
911k
}
Unexecuted instantiation: typevarobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: unicode_format.c:_Py_SET_SIZE_impl
Unexecuted instantiation: unicode_formatter.c:_Py_SET_SIZE_impl
Unexecuted instantiation: unicode_writer.c:_Py_SET_SIZE_impl
Unexecuted instantiation: unicodectype.c:_Py_SET_SIZE_impl
unicodeobject.c:_Py_SET_SIZE_impl
Line
Count
Source
254
20.3M
{
255
20.3M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
20.3M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
20.3M
    ob->ob_size = size;
261
20.3M
#endif
262
20.3M
}
Unexecuted instantiation: unionobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: weakrefobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _warnings.c:_Py_SET_SIZE_impl
Unexecuted instantiation: bltinmodule.c:_Py_SET_SIZE_impl
ceval.c:_Py_SET_SIZE_impl
Line
Count
Source
254
252M
{
255
252M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
252M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
252M
    ob->ob_size = size;
261
252M
#endif
262
252M
}
Unexecuted instantiation: codecs.c:_Py_SET_SIZE_impl
Unexecuted instantiation: codegen.c:_Py_SET_SIZE_impl
Unexecuted instantiation: compile.c:_Py_SET_SIZE_impl
Unexecuted instantiation: context.c:_Py_SET_SIZE_impl
Unexecuted instantiation: errors.c:_Py_SET_SIZE_impl
Unexecuted instantiation: flowgraph.c:_Py_SET_SIZE_impl
Unexecuted instantiation: frame.c:_Py_SET_SIZE_impl
Unexecuted instantiation: future.c:_Py_SET_SIZE_impl
gc.c:_Py_SET_SIZE_impl
Line
Count
Source
254
259M
{
255
259M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
259M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
259M
    ob->ob_size = size;
261
259M
#endif
262
259M
}
Unexecuted instantiation: gc_gil.c:_Py_SET_SIZE_impl
Unexecuted instantiation: getargs.c:_Py_SET_SIZE_impl
Unexecuted instantiation: ceval_gil.c:_Py_SET_SIZE_impl
Unexecuted instantiation: hamt.c:_Py_SET_SIZE_impl
Unexecuted instantiation: hashtable.c:_Py_SET_SIZE_impl
Unexecuted instantiation: import.c:_Py_SET_SIZE_impl
Unexecuted instantiation: importdl.c:_Py_SET_SIZE_impl
Unexecuted instantiation: initconfig.c:_Py_SET_SIZE_impl
Unexecuted instantiation: instrumentation.c:_Py_SET_SIZE_impl
Unexecuted instantiation: instruction_sequence.c:_Py_SET_SIZE_impl
Unexecuted instantiation: intrinsics.c:_Py_SET_SIZE_impl
Unexecuted instantiation: legacy_tracing.c:_Py_SET_SIZE_impl
Unexecuted instantiation: lock.c:_Py_SET_SIZE_impl
Unexecuted instantiation: marshal.c:_Py_SET_SIZE_impl
Unexecuted instantiation: modsupport.c:_Py_SET_SIZE_impl
Unexecuted instantiation: mysnprintf.c:_Py_SET_SIZE_impl
Unexecuted instantiation: parking_lot.c:_Py_SET_SIZE_impl
Unexecuted instantiation: preconfig.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pyarena.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pyctype.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pyhash.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pylifecycle.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pymath.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pystate.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pythonrun.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pytime.c:_Py_SET_SIZE_impl
Unexecuted instantiation: qsbr.c:_Py_SET_SIZE_impl
Unexecuted instantiation: bootstrap_hash.c:_Py_SET_SIZE_impl
Unexecuted instantiation: specialize.c:_Py_SET_SIZE_impl
Unexecuted instantiation: slots.c:_Py_SET_SIZE_impl
Unexecuted instantiation: slots_generated.c:_Py_SET_SIZE_impl
Unexecuted instantiation: structmember.c:_Py_SET_SIZE_impl
Unexecuted instantiation: symtable.c:_Py_SET_SIZE_impl
Unexecuted instantiation: sysmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: thread.c:_Py_SET_SIZE_impl
Unexecuted instantiation: traceback.c:_Py_SET_SIZE_impl
Unexecuted instantiation: tracemalloc.c:_Py_SET_SIZE_impl
Unexecuted instantiation: getopt.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pystrcmp.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pystrtod.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pystrhex.c:_Py_SET_SIZE_impl
Unexecuted instantiation: dtoa.c:_Py_SET_SIZE_impl
Unexecuted instantiation: fileutils.c:_Py_SET_SIZE_impl
Unexecuted instantiation: suggestions.c:_Py_SET_SIZE_impl
Unexecuted instantiation: perf_trampoline.c:_Py_SET_SIZE_impl
Unexecuted instantiation: perf_jit_trampoline.c:_Py_SET_SIZE_impl
Unexecuted instantiation: jit_unwind.c:_Py_SET_SIZE_impl
Unexecuted instantiation: remote_debugging.c:_Py_SET_SIZE_impl
Unexecuted instantiation: dynload_shlib.c:_Py_SET_SIZE_impl
Unexecuted instantiation: config.c:_Py_SET_SIZE_impl
Unexecuted instantiation: gcmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _asynciomodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: atexitmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: faulthandler.c:_Py_SET_SIZE_impl
Unexecuted instantiation: posixmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: signalmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _tracemalloc.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _suggestions.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _datetimemodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _codecsmodule.c:_Py_SET_SIZE_impl
_collectionsmodule.c:_Py_SET_SIZE_impl
Line
Count
Source
254
85.3M
{
255
85.3M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
85.3M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
85.3M
    ob->ob_size = size;
261
85.3M
#endif
262
85.3M
}
Unexecuted instantiation: errnomodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _iomodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: iobase.c:_Py_SET_SIZE_impl
Unexecuted instantiation: fileio.c:_Py_SET_SIZE_impl
Unexecuted instantiation: bytesio.c:_Py_SET_SIZE_impl
Unexecuted instantiation: bufferedio.c:_Py_SET_SIZE_impl
Unexecuted instantiation: textio.c:_Py_SET_SIZE_impl
Unexecuted instantiation: stringio.c:_Py_SET_SIZE_impl
Unexecuted instantiation: itertoolsmodule.c:_Py_SET_SIZE_impl
sre.c:_Py_SET_SIZE_impl
Line
Count
Source
254
111M
{
255
111M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
111M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
111M
    ob->ob_size = size;
261
111M
#endif
262
111M
}
Unexecuted instantiation: _sysconfig.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _threadmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: timemodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _typesmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _typingmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _weakref.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _abc.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _functoolsmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _localemodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _opcode.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _operator.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _stat.c:_Py_SET_SIZE_impl
Unexecuted instantiation: symtablemodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pwdmodule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: getpath.c:_Py_SET_SIZE_impl
Unexecuted instantiation: frozen.c:_Py_SET_SIZE_impl
Unexecuted instantiation: getbuildinfo.c:_Py_SET_SIZE_impl
Unexecuted instantiation: peg_api.c:_Py_SET_SIZE_impl
Unexecuted instantiation: file_tokenizer.c:_Py_SET_SIZE_impl
Unexecuted instantiation: helpers.c:_Py_SET_SIZE_impl
Unexecuted instantiation: myreadline.c:_Py_SET_SIZE_impl
abstract.c:_Py_SET_SIZE_impl
Line
Count
Source
254
6.27M
{
255
6.27M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
6.27M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
6.27M
    ob->ob_size = size;
261
6.27M
#endif
262
6.27M
}
Unexecuted instantiation: boolobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: bytes_methods.c:_Py_SET_SIZE_impl
bytearrayobject.c:_Py_SET_SIZE_impl
Line
Count
Source
254
81.8M
{
255
81.8M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
256
81.8M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
257
#ifdef Py_GIL_DISABLED
258
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
259
#else
260
81.8M
    ob->ob_size = size;
261
81.8M
#endif
262
81.8M
}
Unexecuted instantiation: capsule.c:_Py_SET_SIZE_impl
Unexecuted instantiation: cellobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: classobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: codeobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: complexobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: descrobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: enumobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: genobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: fileobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: frameobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: funcobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: interpolationobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: iterobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: lazyimportobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: odictobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: methodobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: namespaceobject.c:_Py_SET_SIZE_impl
Unexecuted instantiation: _contextvars.c:_Py_SET_SIZE_impl
Unexecuted instantiation: Python-ast.c:_Py_SET_SIZE_impl
Unexecuted instantiation: Python-tokenize.c:_Py_SET_SIZE_impl
Unexecuted instantiation: asdl.c:_Py_SET_SIZE_impl
Unexecuted instantiation: assemble.c:_Py_SET_SIZE_impl
Unexecuted instantiation: ast.c:_Py_SET_SIZE_impl
Unexecuted instantiation: ast_preprocess.c:_Py_SET_SIZE_impl
Unexecuted instantiation: ast_unparse.c:_Py_SET_SIZE_impl
Unexecuted instantiation: critical_section.c:_Py_SET_SIZE_impl
Unexecuted instantiation: crossinterp.c:_Py_SET_SIZE_impl
Unexecuted instantiation: getcopyright.c:_Py_SET_SIZE_impl
Unexecuted instantiation: getplatform.c:_Py_SET_SIZE_impl
Unexecuted instantiation: getversion.c:_Py_SET_SIZE_impl
Unexecuted instantiation: optimizer.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pathconfig.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pegen.c:_Py_SET_SIZE_impl
Unexecuted instantiation: pegen_errors.c:_Py_SET_SIZE_impl
Unexecuted instantiation: parser.c:_Py_SET_SIZE_impl
Unexecuted instantiation: buffer.c:_Py_SET_SIZE_impl
Unexecuted instantiation: lexer.c:_Py_SET_SIZE_impl
Unexecuted instantiation: number.c:_Py_SET_SIZE_impl
Unexecuted instantiation: state.c:_Py_SET_SIZE_impl
Unexecuted instantiation: string.c:_Py_SET_SIZE_impl
Unexecuted instantiation: readline_tokenizer.c:_Py_SET_SIZE_impl
Unexecuted instantiation: string_tokenizer.c:_Py_SET_SIZE_impl
Unexecuted instantiation: utf8_tokenizer.c:_Py_SET_SIZE_impl
Unexecuted instantiation: getcompiler.c:_Py_SET_SIZE_impl
Unexecuted instantiation: mystrtoul.c:_Py_SET_SIZE_impl
Unexecuted instantiation: token.c:_Py_SET_SIZE_impl
Unexecuted instantiation: action_helpers.c:_Py_SET_SIZE_impl
Unexecuted instantiation: string_parser.c:_Py_SET_SIZE_impl
263
264
#endif // !defined(_Py_OPAQUE_PYOBJECT)
265
266
267
/*
268
Type objects contain a string containing the type name (to help somewhat
269
in debugging), the allocation parameters (see PyObject_New() and
270
PyObject_NewVar()),
271
and methods for accessing objects of the type.  Methods are optional, a
272
nil pointer meaning that particular kind of access is not available for
273
this type.  The Py_DECREF() macro uses the tp_dealloc method without
274
checking for a nil pointer; it should always be implemented except if
275
the implementation can guarantee that the reference count will never
276
reach zero (e.g., for statically allocated type objects).
277
278
NB: the methods for certain type groups are now contained in separate
279
method blocks.
280
*/
281
282
typedef PyObject * (*unaryfunc)(PyObject *);
283
typedef PyObject * (*binaryfunc)(PyObject *, PyObject *);
284
typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *);
285
typedef int (*inquiry)(PyObject *);
286
typedef Py_ssize_t (*lenfunc)(PyObject *);
287
typedef PyObject *(*ssizeargfunc)(PyObject *, Py_ssize_t);
288
typedef PyObject *(*ssizessizeargfunc)(PyObject *, Py_ssize_t, Py_ssize_t);
289
typedef int(*ssizeobjargproc)(PyObject *, Py_ssize_t, PyObject *);
290
typedef int(*ssizessizeobjargproc)(PyObject *, Py_ssize_t, Py_ssize_t, PyObject *);
291
typedef int(*objobjargproc)(PyObject *, PyObject *, PyObject *);
292
293
typedef int (*objobjproc)(PyObject *, PyObject *);
294
typedef int (*visitproc)(PyObject *, void *);
295
typedef int (*traverseproc)(PyObject *, visitproc, void *);
296
297
298
typedef void (*freefunc)(void *);
299
typedef void (*destructor)(PyObject *);
300
typedef PyObject *(*getattrfunc)(PyObject *, char *);
301
typedef PyObject *(*getattrofunc)(PyObject *, PyObject *);
302
typedef int (*setattrfunc)(PyObject *, char *, PyObject *);
303
typedef int (*setattrofunc)(PyObject *, PyObject *, PyObject *);
304
typedef PyObject *(*reprfunc)(PyObject *);
305
typedef Py_hash_t (*hashfunc)(PyObject *);
306
typedef PyObject *(*richcmpfunc) (PyObject *, PyObject *, int);
307
typedef PyObject *(*getiterfunc) (PyObject *);
308
typedef PyObject *(*iternextfunc) (PyObject *);
309
typedef struct {
310
    PyObject *object;
311
    Py_ssize_t index;
312
} _PyObjectIndexPair;
313
typedef _PyObjectIndexPair (*_Py_iteritemfunc) (PyObject *, Py_ssize_t index);
314
typedef PyObject *(*descrgetfunc) (PyObject *, PyObject *, PyObject *);
315
typedef int (*descrsetfunc) (PyObject *, PyObject *, PyObject *);
316
typedef int (*initproc)(PyObject *, PyObject *, PyObject *);
317
typedef PyObject *(*newfunc)(PyTypeObject *, PyObject *, PyObject *);
318
typedef PyObject *(*allocfunc)(PyTypeObject *, Py_ssize_t);
319
320
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030c0000 // 3.12
321
typedef PyObject *(*vectorcallfunc)(PyObject *callable, PyObject *const *args,
322
                                    size_t nargsf, PyObject *kwnames);
323
#endif
324
325
typedef struct{
326
    int slot;    /* slot id, see below */
327
    void *pfunc; /* function pointer */
328
} PyType_Slot;
329
330
typedef struct{
331
    const char* name;
332
    int basicsize;
333
    int itemsize;
334
    unsigned int flags;
335
    PyType_Slot *slots; /* terminated by slot==0. */
336
} PyType_Spec;
337
338
PyAPI_FUNC(PyObject*) PyType_FromSpec(PyType_Spec*);
339
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
340
PyAPI_FUNC(PyObject*) PyType_FromSpecWithBases(PyType_Spec*, PyObject*);
341
#endif
342
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03040000
343
PyAPI_FUNC(void*) PyType_GetSlot(PyTypeObject*, int);
344
#endif
345
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03090000
346
PyAPI_FUNC(PyObject*) PyType_FromModuleAndSpec(PyObject *, PyType_Spec *, PyObject *);
347
PyAPI_FUNC(PyObject *) PyType_GetModule(PyTypeObject *);
348
PyAPI_FUNC(void *) PyType_GetModuleState(PyTypeObject *);
349
#endif
350
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030B0000
351
PyAPI_FUNC(PyObject *) PyType_GetName(PyTypeObject *);
352
PyAPI_FUNC(PyObject *) PyType_GetQualName(PyTypeObject *);
353
#endif
354
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030D0000
355
PyAPI_FUNC(PyObject *) PyType_GetFullyQualifiedName(PyTypeObject *type);
356
PyAPI_FUNC(PyObject *) PyType_GetModuleName(PyTypeObject *type);
357
#endif
358
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030C0000
359
PyAPI_FUNC(PyObject *) PyType_FromMetaclass(PyTypeObject*, PyObject*, PyType_Spec*, PyObject*);
360
PyAPI_FUNC(void *) PyObject_GetTypeData(PyObject *obj, PyTypeObject *cls);
361
PyAPI_FUNC(Py_ssize_t) PyType_GetTypeDataSize(PyTypeObject *cls);
362
#endif
363
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030E0000
364
PyAPI_FUNC(int) PyType_GetBaseByToken(PyTypeObject *, void *, PyTypeObject **);
365
30
#define Py_TP_USE_SPEC NULL
366
#endif
367
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= _Py_PACK_VERSION(3, 15)
368
PyAPI_FUNC(PyObject *) PyType_FromSlots(struct PySlot *slots);
369
#endif
370
371
/* Generic type check */
372
PyAPI_FUNC(int) PyType_IsSubtype(PyTypeObject *, PyTypeObject *);
373
374
751M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
751M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
751M
}
Unexecuted instantiation: bytesobject.c:PyObject_TypeCheck
Unexecuted instantiation: call.c:PyObject_TypeCheck
exceptions.c:PyObject_TypeCheck
Line
Count
Source
374
2.02M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
2.02M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
2.02M
}
genericaliasobject.c:PyObject_TypeCheck
Line
Count
Source
374
152
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
152
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
152
}
floatobject.c:PyObject_TypeCheck
Line
Count
Source
374
16.1M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
16.1M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
16.1M
}
Unexecuted instantiation: listobject.c:PyObject_TypeCheck
longobject.c:PyObject_TypeCheck
Line
Count
Source
374
4.73M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
4.73M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
4.73M
}
dictobject.c:PyObject_TypeCheck
Line
Count
Source
374
30.3M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
30.3M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
30.3M
}
Unexecuted instantiation: memoryobject.c:PyObject_TypeCheck
moduleobject.c:PyObject_TypeCheck
Line
Count
Source
374
31.9M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
31.9M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
31.9M
}
Unexecuted instantiation: object.c:PyObject_TypeCheck
Unexecuted instantiation: obmalloc.c:PyObject_TypeCheck
Unexecuted instantiation: picklebufobject.c:PyObject_TypeCheck
Unexecuted instantiation: rangeobject.c:PyObject_TypeCheck
Unexecuted instantiation: sentinelobject.c:PyObject_TypeCheck
Unexecuted instantiation: setobject.c:PyObject_TypeCheck
Unexecuted instantiation: sliceobject.c:PyObject_TypeCheck
Unexecuted instantiation: structseq.c:PyObject_TypeCheck
Unexecuted instantiation: templateobject.c:PyObject_TypeCheck
Unexecuted instantiation: tupleobject.c:PyObject_TypeCheck
typeobject.c:PyObject_TypeCheck
Line
Count
Source
374
153M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
153M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
153M
}
Unexecuted instantiation: typevarobject.c:PyObject_TypeCheck
Unexecuted instantiation: unicode_format.c:PyObject_TypeCheck
Unexecuted instantiation: unicode_formatter.c:PyObject_TypeCheck
Unexecuted instantiation: unicode_writer.c:PyObject_TypeCheck
Unexecuted instantiation: unicodectype.c:PyObject_TypeCheck
Unexecuted instantiation: unicodeobject.c:PyObject_TypeCheck
unionobject.c:PyObject_TypeCheck
Line
Count
Source
374
316
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
316
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
316
}
weakrefobject.c:PyObject_TypeCheck
Line
Count
Source
374
893k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
893k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
893k
}
_warnings.c:PyObject_TypeCheck
Line
Count
Source
374
365k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
365k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
365k
}
bltinmodule.c:PyObject_TypeCheck
Line
Count
Source
374
8.80M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
8.80M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
8.80M
}
ceval.c:PyObject_TypeCheck
Line
Count
Source
374
32
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
32
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
32
}
codecs.c:PyObject_TypeCheck
Line
Count
Source
374
1.01M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
1.01M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
1.01M
}
codegen.c:PyObject_TypeCheck
Line
Count
Source
374
6
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
6
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
6
}
Unexecuted instantiation: compile.c:PyObject_TypeCheck
Unexecuted instantiation: context.c:PyObject_TypeCheck
Unexecuted instantiation: errors.c:PyObject_TypeCheck
Unexecuted instantiation: flowgraph.c:PyObject_TypeCheck
Unexecuted instantiation: frame.c:PyObject_TypeCheck
Unexecuted instantiation: future.c:PyObject_TypeCheck
gc.c:PyObject_TypeCheck
Line
Count
Source
374
8.91M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
8.91M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
8.91M
}
Unexecuted instantiation: gc_gil.c:PyObject_TypeCheck
Unexecuted instantiation: getargs.c:PyObject_TypeCheck
Unexecuted instantiation: ceval_gil.c:PyObject_TypeCheck
Unexecuted instantiation: hamt.c:PyObject_TypeCheck
Unexecuted instantiation: hashtable.c:PyObject_TypeCheck
import.c:PyObject_TypeCheck
Line
Count
Source
374
6.93k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
6.93k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
6.93k
}
importdl.c:PyObject_TypeCheck
Line
Count
Source
374
938
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
938
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
938
}
Unexecuted instantiation: initconfig.c:PyObject_TypeCheck
Unexecuted instantiation: instrumentation.c:PyObject_TypeCheck
Unexecuted instantiation: instruction_sequence.c:PyObject_TypeCheck
Unexecuted instantiation: intrinsics.c:PyObject_TypeCheck
Unexecuted instantiation: legacy_tracing.c:PyObject_TypeCheck
Unexecuted instantiation: lock.c:PyObject_TypeCheck
Unexecuted instantiation: marshal.c:PyObject_TypeCheck
modsupport.c:PyObject_TypeCheck
Line
Count
Source
374
21.1k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
21.1k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
21.1k
}
Unexecuted instantiation: mysnprintf.c:PyObject_TypeCheck
Unexecuted instantiation: parking_lot.c:PyObject_TypeCheck
Unexecuted instantiation: preconfig.c:PyObject_TypeCheck
Unexecuted instantiation: pyarena.c:PyObject_TypeCheck
Unexecuted instantiation: pyctype.c:PyObject_TypeCheck
Unexecuted instantiation: pyhash.c:PyObject_TypeCheck
Unexecuted instantiation: pylifecycle.c:PyObject_TypeCheck
Unexecuted instantiation: pymath.c:PyObject_TypeCheck
Unexecuted instantiation: pystate.c:PyObject_TypeCheck
Unexecuted instantiation: pythonrun.c:PyObject_TypeCheck
Unexecuted instantiation: pytime.c:PyObject_TypeCheck
Unexecuted instantiation: qsbr.c:PyObject_TypeCheck
Unexecuted instantiation: bootstrap_hash.c:PyObject_TypeCheck
specialize.c:PyObject_TypeCheck
Line
Count
Source
374
11.0k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
11.0k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
11.0k
}
Unexecuted instantiation: slots.c:PyObject_TypeCheck
Unexecuted instantiation: slots_generated.c:PyObject_TypeCheck
Unexecuted instantiation: structmember.c:PyObject_TypeCheck
Unexecuted instantiation: symtable.c:PyObject_TypeCheck
Unexecuted instantiation: sysmodule.c:PyObject_TypeCheck
Unexecuted instantiation: thread.c:PyObject_TypeCheck
Unexecuted instantiation: traceback.c:PyObject_TypeCheck
Unexecuted instantiation: tracemalloc.c:PyObject_TypeCheck
Unexecuted instantiation: getopt.c:PyObject_TypeCheck
Unexecuted instantiation: pystrcmp.c:PyObject_TypeCheck
Unexecuted instantiation: pystrtod.c:PyObject_TypeCheck
Unexecuted instantiation: pystrhex.c:PyObject_TypeCheck
Unexecuted instantiation: dtoa.c:PyObject_TypeCheck
Unexecuted instantiation: fileutils.c:PyObject_TypeCheck
Unexecuted instantiation: suggestions.c:PyObject_TypeCheck
Unexecuted instantiation: perf_trampoline.c:PyObject_TypeCheck
Unexecuted instantiation: perf_jit_trampoline.c:PyObject_TypeCheck
Unexecuted instantiation: jit_unwind.c:PyObject_TypeCheck
Unexecuted instantiation: remote_debugging.c:PyObject_TypeCheck
Unexecuted instantiation: dynload_shlib.c:PyObject_TypeCheck
Unexecuted instantiation: config.c:PyObject_TypeCheck
Unexecuted instantiation: gcmodule.c:PyObject_TypeCheck
Unexecuted instantiation: _asynciomodule.c:PyObject_TypeCheck
Unexecuted instantiation: atexitmodule.c:PyObject_TypeCheck
Unexecuted instantiation: faulthandler.c:PyObject_TypeCheck
Unexecuted instantiation: posixmodule.c:PyObject_TypeCheck
Unexecuted instantiation: signalmodule.c:PyObject_TypeCheck
Unexecuted instantiation: _tracemalloc.c:PyObject_TypeCheck
Unexecuted instantiation: _suggestions.c:PyObject_TypeCheck
_datetimemodule.c:PyObject_TypeCheck
Line
Count
Source
374
24.2k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
24.2k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
24.2k
}
Unexecuted instantiation: _codecsmodule.c:PyObject_TypeCheck
Unexecuted instantiation: _collectionsmodule.c:PyObject_TypeCheck
Unexecuted instantiation: errnomodule.c:PyObject_TypeCheck
Unexecuted instantiation: _iomodule.c:PyObject_TypeCheck
Unexecuted instantiation: iobase.c:PyObject_TypeCheck
Unexecuted instantiation: fileio.c:PyObject_TypeCheck
Unexecuted instantiation: bytesio.c:PyObject_TypeCheck
Unexecuted instantiation: bufferedio.c:PyObject_TypeCheck
Unexecuted instantiation: textio.c:PyObject_TypeCheck
Unexecuted instantiation: stringio.c:PyObject_TypeCheck
Unexecuted instantiation: itertoolsmodule.c:PyObject_TypeCheck
Unexecuted instantiation: sre.c:PyObject_TypeCheck
Unexecuted instantiation: _sysconfig.c:PyObject_TypeCheck
Unexecuted instantiation: _threadmodule.c:PyObject_TypeCheck
Unexecuted instantiation: timemodule.c:PyObject_TypeCheck
Unexecuted instantiation: _typesmodule.c:PyObject_TypeCheck
Unexecuted instantiation: _typingmodule.c:PyObject_TypeCheck
_weakref.c:PyObject_TypeCheck
Line
Count
Source
374
15.0k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
15.0k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
15.0k
}
Unexecuted instantiation: _abc.c:PyObject_TypeCheck
_functoolsmodule.c:PyObject_TypeCheck
Line
Count
Source
374
21.9k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
21.9k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
21.9k
}
Unexecuted instantiation: _localemodule.c:PyObject_TypeCheck
Unexecuted instantiation: _opcode.c:PyObject_TypeCheck
Unexecuted instantiation: _operator.c:PyObject_TypeCheck
Unexecuted instantiation: _stat.c:PyObject_TypeCheck
Unexecuted instantiation: symtablemodule.c:PyObject_TypeCheck
Unexecuted instantiation: pwdmodule.c:PyObject_TypeCheck
Unexecuted instantiation: getpath.c:PyObject_TypeCheck
Unexecuted instantiation: frozen.c:PyObject_TypeCheck
Unexecuted instantiation: getbuildinfo.c:PyObject_TypeCheck
Unexecuted instantiation: peg_api.c:PyObject_TypeCheck
Unexecuted instantiation: file_tokenizer.c:PyObject_TypeCheck
Unexecuted instantiation: helpers.c:PyObject_TypeCheck
Unexecuted instantiation: myreadline.c:PyObject_TypeCheck
abstract.c:PyObject_TypeCheck
Line
Count
Source
374
56.0M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
56.0M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
56.0M
}
Unexecuted instantiation: boolobject.c:PyObject_TypeCheck
Unexecuted instantiation: bytes_methods.c:PyObject_TypeCheck
bytearrayobject.c:PyObject_TypeCheck
Line
Count
Source
374
106M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
106M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
106M
}
Unexecuted instantiation: capsule.c:PyObject_TypeCheck
Unexecuted instantiation: cellobject.c:PyObject_TypeCheck
Unexecuted instantiation: classobject.c:PyObject_TypeCheck
Unexecuted instantiation: codeobject.c:PyObject_TypeCheck
complexobject.c:PyObject_TypeCheck
Line
Count
Source
374
4
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
4
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
4
}
descrobject.c:PyObject_TypeCheck
Line
Count
Source
374
329M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
329M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
329M
}
Unexecuted instantiation: enumobject.c:PyObject_TypeCheck
Unexecuted instantiation: genobject.c:PyObject_TypeCheck
Unexecuted instantiation: fileobject.c:PyObject_TypeCheck
Unexecuted instantiation: frameobject.c:PyObject_TypeCheck
funcobject.c:PyObject_TypeCheck
Line
Count
Source
374
36
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
36
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
36
}
Unexecuted instantiation: interpolationobject.c:PyObject_TypeCheck
Unexecuted instantiation: iterobject.c:PyObject_TypeCheck
Unexecuted instantiation: lazyimportobject.c:PyObject_TypeCheck
Unexecuted instantiation: odictobject.c:PyObject_TypeCheck
methodobject.c:PyObject_TypeCheck
Line
Count
Source
374
165k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
165k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
165k
}
Unexecuted instantiation: namespaceobject.c:PyObject_TypeCheck
Unexecuted instantiation: _contextvars.c:PyObject_TypeCheck
Unexecuted instantiation: Python-ast.c:PyObject_TypeCheck
Unexecuted instantiation: Python-tokenize.c:PyObject_TypeCheck
Unexecuted instantiation: asdl.c:PyObject_TypeCheck
Unexecuted instantiation: assemble.c:PyObject_TypeCheck
Unexecuted instantiation: ast.c:PyObject_TypeCheck
Unexecuted instantiation: ast_preprocess.c:PyObject_TypeCheck
Unexecuted instantiation: ast_unparse.c:PyObject_TypeCheck
Unexecuted instantiation: critical_section.c:PyObject_TypeCheck
Unexecuted instantiation: crossinterp.c:PyObject_TypeCheck
Unexecuted instantiation: getcopyright.c:PyObject_TypeCheck
Unexecuted instantiation: getplatform.c:PyObject_TypeCheck
Unexecuted instantiation: getversion.c:PyObject_TypeCheck
Unexecuted instantiation: optimizer.c:PyObject_TypeCheck
Unexecuted instantiation: pathconfig.c:PyObject_TypeCheck
pegen.c:PyObject_TypeCheck
Line
Count
Source
374
92.4k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
375
92.4k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
376
92.4k
}
Unexecuted instantiation: pegen_errors.c:PyObject_TypeCheck
Unexecuted instantiation: parser.c:PyObject_TypeCheck
Unexecuted instantiation: buffer.c:PyObject_TypeCheck
Unexecuted instantiation: lexer.c:PyObject_TypeCheck
Unexecuted instantiation: number.c:PyObject_TypeCheck
Unexecuted instantiation: state.c:PyObject_TypeCheck
Unexecuted instantiation: string.c:PyObject_TypeCheck
Unexecuted instantiation: readline_tokenizer.c:PyObject_TypeCheck
Unexecuted instantiation: string_tokenizer.c:PyObject_TypeCheck
Unexecuted instantiation: utf8_tokenizer.c:PyObject_TypeCheck
Unexecuted instantiation: getcompiler.c:PyObject_TypeCheck
Unexecuted instantiation: mystrtoul.c:PyObject_TypeCheck
Unexecuted instantiation: token.c:PyObject_TypeCheck
Unexecuted instantiation: action_helpers.c:PyObject_TypeCheck
Unexecuted instantiation: string_parser.c:PyObject_TypeCheck
377
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
378
764M
#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
379
#endif
380
381
PyAPI_DATA(PyTypeObject) PyType_Type; /* built-in 'type' */
382
PyAPI_DATA(PyTypeObject) PyBaseObject_Type; /* built-in 'object' */
383
PyAPI_DATA(PyTypeObject) PySuper_Type; /* built-in 'super' */
384
385
PyAPI_FUNC(unsigned long) PyType_GetFlags(PyTypeObject*);
386
387
PyAPI_FUNC(int) PyType_Ready(PyTypeObject *);
388
PyAPI_FUNC(PyObject *) PyType_GenericAlloc(PyTypeObject *, Py_ssize_t);
389
PyAPI_FUNC(PyObject *) PyType_GenericNew(PyTypeObject *,
390
                                               PyObject *, PyObject *);
391
PyAPI_FUNC(unsigned int) PyType_ClearCache(void);
392
PyAPI_FUNC(void) PyType_Modified(PyTypeObject *);
393
394
/* Generic operations on objects */
395
PyAPI_FUNC(PyObject *) PyObject_Repr(PyObject *);
396
PyAPI_FUNC(PyObject *) PyObject_Str(PyObject *);
397
PyAPI_FUNC(PyObject *) PyObject_ASCII(PyObject *);
398
PyAPI_FUNC(PyObject *) PyObject_Bytes(PyObject *);
399
PyAPI_FUNC(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int);
400
PyAPI_FUNC(int) PyObject_RichCompareBool(PyObject *, PyObject *, int);
401
PyAPI_FUNC(PyObject *) PyObject_GetAttrString(PyObject *, const char *);
402
PyAPI_FUNC(int) PyObject_SetAttrString(PyObject *, const char *, PyObject *);
403
PyAPI_FUNC(int) PyObject_DelAttrString(PyObject *v, const char *name);
404
PyAPI_FUNC(int) PyObject_HasAttrString(PyObject *, const char *);
405
PyAPI_FUNC(PyObject *) PyObject_GetAttr(PyObject *, PyObject *);
406
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
407
PyAPI_FUNC(int) PyObject_GetOptionalAttr(PyObject *, PyObject *, PyObject **);
408
PyAPI_FUNC(int) PyObject_GetOptionalAttrString(PyObject *, const char *, PyObject **);
409
#endif
410
PyAPI_FUNC(int) PyObject_SetAttr(PyObject *, PyObject *, PyObject *);
411
PyAPI_FUNC(int) PyObject_DelAttr(PyObject *v, PyObject *name);
412
PyAPI_FUNC(int) PyObject_HasAttr(PyObject *, PyObject *);
413
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
414
PyAPI_FUNC(int) PyObject_HasAttrWithError(PyObject *, PyObject *);
415
PyAPI_FUNC(int) PyObject_HasAttrStringWithError(PyObject *, const char *);
416
#endif
417
PyAPI_FUNC(PyObject *) PyObject_SelfIter(PyObject *);
418
PyAPI_FUNC(PyObject *) PyObject_GenericGetAttr(PyObject *, PyObject *);
419
PyAPI_FUNC(int) PyObject_GenericSetAttr(PyObject *, PyObject *, PyObject *);
420
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
421
PyAPI_FUNC(int) PyObject_GenericSetDict(PyObject *, PyObject *, void *);
422
#endif
423
PyAPI_FUNC(Py_hash_t) PyObject_Hash(PyObject *);
424
PyAPI_FUNC(Py_hash_t) PyObject_HashNotImplemented(PyObject *);
425
PyAPI_FUNC(int) PyObject_IsTrue(PyObject *);
426
PyAPI_FUNC(int) PyObject_Not(PyObject *);
427
PyAPI_FUNC(int) PyCallable_Check(PyObject *);
428
PyAPI_FUNC(void) PyObject_ClearWeakRefs(PyObject *);
429
430
/* PyObject_Dir(obj) acts like Python builtins.dir(obj), returning a
431
   list of strings.  PyObject_Dir(NULL) is like builtins.dir(),
432
   returning the names of the current locals.  In this case, if there are
433
   no current locals, NULL is returned, and PyErr_Occurred() is false.
434
*/
435
PyAPI_FUNC(PyObject *) PyObject_Dir(PyObject *);
436
437
/* Helpers for printing recursive container types */
438
PyAPI_FUNC(int) Py_ReprEnter(PyObject *);
439
PyAPI_FUNC(void) Py_ReprLeave(PyObject *);
440
441
/* Flag bits for printing: */
442
0
#define Py_PRINT_RAW    1       /* No string quotes etc. */
443
444
/*
445
Type flags (tp_flags)
446
447
These flags are used to change expected features and behavior for a
448
particular type.
449
450
Arbitration of the flag bit positions will need to be coordinated among
451
all extension writers who publicly release their extensions (this will
452
be fewer than you might expect!).
453
454
Most flags were removed as of Python 3.0 to make room for new flags.  (Some
455
flags are not for backwards compatibility but to indicate the presence of an
456
optional feature; these flags remain of course.)
457
458
Type definitions should use Py_TPFLAGS_DEFAULT for their tp_flags value.
459
460
Code can use PyType_HasFeature(type_ob, flag_value) to test whether the
461
given type object has a specified feature.
462
*/
463
464
#ifndef Py_LIMITED_API
465
466
/* Track types initialized using _PyStaticType_InitBuiltin(). */
467
765M
#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
468
469
/* The values array is placed inline directly after the rest of
470
 * the object. Implies Py_TPFLAGS_HAVE_GC.
471
 */
472
1.29G
#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
473
474
/* Placement of weakref pointers are managed by the VM, not by the type.
475
 * The VM will automatically set tp_weaklistoffset. Implies Py_TPFLAGS_HAVE_GC.
476
 */
477
1.33G
#define Py_TPFLAGS_MANAGED_WEAKREF (1 << 3)
478
479
/* Placement of dict (and values) pointers are managed by the VM, not by the type.
480
 * The VM will automatically set tp_dictoffset. Implies Py_TPFLAGS_HAVE_GC.
481
 */
482
1.73G
#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
483
484
/* Type has dictionary or weakref pointers that are managed by VM and has
485
 * to allocate space to store these.
486
 */
487
1.33G
#define Py_TPFLAGS_PREHEADER (Py_TPFLAGS_MANAGED_WEAKREF | Py_TPFLAGS_MANAGED_DICT)
488
489
/* Set if instances of the type object are treated as sequences for pattern matching */
490
2.45M
#define Py_TPFLAGS_SEQUENCE (1 << 5)
491
/* Set if instances of the type object are treated as mappings for pattern matching */
492
2.45M
#define Py_TPFLAGS_MAPPING (1 << 6)
493
#endif
494
495
/* Disallow creating instances of the type: set tp_new to NULL and don't create
496
 * the "__new__" key in the type dictionary. */
497
261k
#define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7)
498
499
/* Set if the type object is immutable: type attributes cannot be set nor deleted */
500
2.54M
#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
501
502
/* Set if the type object is dynamically allocated */
503
734M
#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
504
505
/* Set if the type allows subclassing */
506
992k
#define Py_TPFLAGS_BASETYPE (1UL << 10)
507
508
/* Set if the type implements the vectorcall protocol (PEP 590) */
509
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030C0000
510
681M
#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
511
#ifndef Py_LIMITED_API
512
// Backwards compatibility alias for API that was provisional in Python 3.8
513
#define _Py_TPFLAGS_HAVE_VECTORCALL Py_TPFLAGS_HAVE_VECTORCALL
514
#endif
515
#endif
516
517
/* Set if the type is 'ready' -- fully initialized */
518
2.18M
#define Py_TPFLAGS_READY (1UL << 12)
519
520
/* Set while the type is being 'readied', to prevent recursive ready calls */
521
503k
#define Py_TPFLAGS_READYING (1UL << 13)
522
523
/* Objects support garbage collection (see objimpl.h) */
524
7.77G
#define Py_TPFLAGS_HAVE_GC (1UL << 14)
525
526
/* These two bits are preserved for Stackless Python, next after this is 17 */
527
#ifdef STACKLESS
528
#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION (3UL << 15)
529
#else
530
249k
#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION 0
531
#endif
532
533
/* Objects behave like an unbound method */
534
184M
#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
535
536
/* Unused. Legacy flag */
537
#define Py_TPFLAGS_VALID_VERSION_TAG  (1UL << 19)
538
539
/* Type is abstract and cannot be instantiated */
540
40.9M
#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
541
542
// This undocumented flag gives certain built-ins their unique pattern-matching
543
// behavior, which allows a single positional subpattern to match against the
544
// subject itself (rather than a mapped attribute on it):
545
496k
#define _Py_TPFLAGS_MATCH_SELF (1UL << 22)
546
547
/* Items (ob_size*tp_itemsize) are found at the end of an instance's memory */
548
4.73M
#define Py_TPFLAGS_ITEMS_AT_END (1UL << 23)
549
550
/* These flags are used to determine if a type is a subclass. */
551
302
#define Py_TPFLAGS_LONG_SUBCLASS        (1UL << 24)
552
152
#define Py_TPFLAGS_LIST_SUBCLASS        (1UL << 25)
553
1.05k
#define Py_TPFLAGS_TUPLE_SUBCLASS       (1UL << 26)
554
6
#define Py_TPFLAGS_BYTES_SUBCLASS       (1UL << 27)
555
13.6M
#define Py_TPFLAGS_UNICODE_SUBCLASS     (1UL << 28)
556
216
#define Py_TPFLAGS_DICT_SUBCLASS        (1UL << 29)
557
3.77k
#define Py_TPFLAGS_BASE_EXC_SUBCLASS    (1UL << 30)
558
151
#define Py_TPFLAGS_TYPE_SUBCLASS        (1UL << 31)
559
560
249k
#define Py_TPFLAGS_DEFAULT  ( \
561
249k
                 Py_TPFLAGS_HAVE_STACKLESS_EXTENSION | \
562
249k
                0)
563
564
/* NOTE: Some of the following flags reuse lower bits (removed as part of the
565
 * Python 3.0 transition). */
566
567
/* The following flags are kept for compatibility; in previous
568
 * versions they indicated presence of newer tp_* fields on the
569
 * type struct.
570
 * Starting with 3.8, binary compatibility of C extensions across
571
 * feature releases of Python is not supported anymore (except when
572
 * using the stable ABI, in which all classes are created dynamically,
573
 * using the interpreter's memory layout.)
574
 * Note that older extensions using the stable ABI set these flags,
575
 * so the bits must not be repurposed.
576
 */
577
#define Py_TPFLAGS_HAVE_FINALIZE (1UL << 0)
578
#define Py_TPFLAGS_HAVE_VERSION_TAG   (1UL << 18)
579
580
// Flag values for ob_flags (16 bits available, if SIZEOF_VOID_P > 4).
581
250M
#define _Py_IMMORTAL_FLAGS (1 << 0)
582
#define _Py_LEGACY_ABI_CHECK_FLAG (1 << 1) /* see PyModuleDef_Init() */
583
250M
#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
584
#if !defined(Py_LIMITED_API)
585
#  if defined(Py_GIL_DISABLED) && defined(Py_DEBUG)
586
#    define _Py_TYPE_REVEALED_FLAG (1 << 3)
587
#  endif
588
#endif
589
590
#define Py_CONSTANT_NONE 0
591
#define Py_CONSTANT_FALSE 1
592
#define Py_CONSTANT_TRUE 2
593
#define Py_CONSTANT_ELLIPSIS 3
594
#define Py_CONSTANT_NOT_IMPLEMENTED 4
595
36
#define Py_CONSTANT_ZERO 5
596
36
#define Py_CONSTANT_ONE 6
597
336k
#define Py_CONSTANT_EMPTY_STR 7
598
30.3M
#define Py_CONSTANT_EMPTY_BYTES 8
599
72
#define Py_CONSTANT_EMPTY_TUPLE 9
600
601
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
602
PyAPI_FUNC(PyObject*) Py_GetConstant(unsigned int constant_id);
603
PyAPI_FUNC(PyObject*) Py_GetConstantBorrowed(unsigned int constant_id);
604
#endif
605
606
607
/*
608
_Py_NoneStruct is an object of undefined type which can be used in contexts
609
where NULL (nil) is not suitable (since NULL often means 'error').
610
*/
611
PyAPI_DATA(PyObject) _Py_NoneStruct; /* Don't use this directly */
612
613
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030D0000
614
#  define Py_None Py_GetConstantBorrowed(Py_CONSTANT_NONE)
615
#else
616
1.51G
#  define Py_None (&_Py_NoneStruct)
617
#endif
618
619
// Test if an object is the None singleton, the same as "x is None" in Python.
620
PyAPI_FUNC(int) Py_IsNone(PyObject *x);
621
314M
#define Py_IsNone(x) Py_Is((x), Py_None)
622
623
/* Macro for returning Py_None from a function.
624
 * Only treat Py_None as immortal in the limited C API 3.12 and newer. */
625
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 < 0x030c0000
626
#  define Py_RETURN_NONE return Py_NewRef(Py_None)
627
#else
628
211M
#  define Py_RETURN_NONE return Py_None
629
#endif
630
631
/*
632
Py_NotImplemented is a singleton used to signal that an operation is
633
not implemented for a given type combination.
634
*/
635
PyAPI_DATA(PyObject) _Py_NotImplementedStruct; /* Don't use this directly */
636
637
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030D0000
638
#  define Py_NotImplemented Py_GetConstantBorrowed(Py_CONSTANT_NOT_IMPLEMENTED)
639
#else
640
722M
#  define Py_NotImplemented (&_Py_NotImplementedStruct)
641
#endif
642
643
/* Macro for returning Py_NotImplemented from a function. Only treat
644
 * Py_NotImplemented as immortal in the limited C API 3.12 and newer. */
645
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 < 0x030c0000
646
#  define Py_RETURN_NOTIMPLEMENTED return Py_NewRef(Py_NotImplemented)
647
#else
648
50.8M
#  define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
649
#endif
650
651
/* Rich comparison opcodes */
652
102M
#define Py_LT 0
653
4.61M
#define Py_LE 1
654
813M
#define Py_EQ 2
655
147M
#define Py_NE 3
656
17.0M
#define Py_GT 4
657
3.97M
#define Py_GE 5
658
659
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030A0000
660
/* Result of calling PyIter_Send */
661
typedef enum {
662
    PYGEN_RETURN = 0,
663
    PYGEN_ERROR = -1,
664
    PYGEN_NEXT = 1
665
} PySendResult;
666
#endif
667
668
/*
669
 * Macro for implementing rich comparisons
670
 *
671
 * Needs to be a macro because any C-comparable type can be used.
672
 */
673
#define Py_RETURN_RICHCOMPARE(val1, val2, op)                               \
674
209M
    do {                                                                    \
675
209M
        switch (op) {                                                       \
676
151M
        case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
677
151M
        case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
678
48.5M
        case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
679
48.5M
        case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
680
8.70M
        case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
681
641k
        case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
682
3.22k
        default:                                                            \
683
0
            Py_UNREACHABLE();                                               \
684
209M
        }                                                                   \
685
209M
    } while (0)
686
687
688
/*
689
More conventions
690
================
691
692
Argument Checking
693
-----------------
694
695
Functions that take objects as arguments normally don't check for nil
696
arguments, but they do check the type of the argument, and return an
697
error if the function doesn't apply to the type.
698
699
Failure Modes
700
-------------
701
702
Functions may fail for a variety of reasons, including running out of
703
memory.  This is communicated to the caller in two ways: an error string
704
is set (see errors.h), and the function result differs: functions that
705
normally return a pointer return NULL for failure, functions returning
706
an integer return -1 (which could be a legal return value too!), and
707
other functions return 0 for success and -1 for failure.
708
Callers should always check for errors before using the result.  If
709
an error was set, the caller must either explicitly clear it, or pass
710
the error on to its caller.
711
712
Reference Counts
713
----------------
714
715
It takes a while to get used to the proper usage of reference counts.
716
717
Functions that create an object set the reference count to 1; such new
718
objects must be stored somewhere or destroyed again with Py_DECREF().
719
Some functions that 'store' objects, such as PyTuple_SetItem() and
720
PyList_SetItem(),
721
don't increment the reference count of the object, since the most
722
frequent use is to store a fresh object.  Functions that 'retrieve'
723
objects, such as PyTuple_GetItem() and PyDict_GetItemString(), also
724
don't increment
725
the reference count, since most frequently the object is only looked at
726
quickly.  Thus, to retrieve an object and store it again, the caller
727
must call Py_INCREF() explicitly.
728
729
NOTE: functions that 'consume' a reference count, like
730
PyList_SetItem(), consume the reference even if the object wasn't
731
successfully stored, to simplify error handling.
732
733
It seems attractive to make other functions that take an object as
734
argument consume a reference count; however, this may quickly get
735
confusing (even the current practice is already confusing).  Consider
736
it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at
737
times.
738
*/
739
740
#ifndef Py_LIMITED_API
741
#  define Py_CPYTHON_OBJECT_H
742
#  include "cpython/object.h"
743
#  undef Py_CPYTHON_OBJECT_H
744
#endif
745
746
747
static inline int
748
PyType_HasFeature(PyTypeObject *type, unsigned long feature)
749
7.85G
{
750
7.85G
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
    flags = type->tp_flags;
756
#endif
757
7.85G
    return ((flags & feature) != 0);
758
7.85G
}
bytesobject.c:PyType_HasFeature
Line
Count
Source
749
249M
{
750
249M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
249M
    flags = type->tp_flags;
756
249M
#endif
757
249M
    return ((flags & feature) != 0);
758
249M
}
call.c:PyType_HasFeature
Line
Count
Source
749
498M
{
750
498M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
498M
    flags = type->tp_flags;
756
498M
#endif
757
498M
    return ((flags & feature) != 0);
758
498M
}
exceptions.c:PyType_HasFeature
Line
Count
Source
749
4.07M
{
750
4.07M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
4.07M
    flags = type->tp_flags;
756
4.07M
#endif
757
4.07M
    return ((flags & feature) != 0);
758
4.07M
}
genericaliasobject.c:PyType_HasFeature
Line
Count
Source
749
3.15k
{
750
3.15k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
3.15k
    flags = type->tp_flags;
756
3.15k
#endif
757
3.15k
    return ((flags & feature) != 0);
758
3.15k
}
floatobject.c:PyType_HasFeature
Line
Count
Source
749
9.65M
{
750
9.65M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
9.65M
    flags = type->tp_flags;
756
9.65M
#endif
757
9.65M
    return ((flags & feature) != 0);
758
9.65M
}
listobject.c:PyType_HasFeature
Line
Count
Source
749
221M
{
750
221M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
221M
    flags = type->tp_flags;
756
221M
#endif
757
221M
    return ((flags & feature) != 0);
758
221M
}
longobject.c:PyType_HasFeature
Line
Count
Source
749
1.39G
{
750
1.39G
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
1.39G
    flags = type->tp_flags;
756
1.39G
#endif
757
1.39G
    return ((flags & feature) != 0);
758
1.39G
}
dictobject.c:PyType_HasFeature
Line
Count
Source
749
564M
{
750
564M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
564M
    flags = type->tp_flags;
756
564M
#endif
757
564M
    return ((flags & feature) != 0);
758
564M
}
memoryobject.c:PyType_HasFeature
Line
Count
Source
749
122k
{
750
122k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
122k
    flags = type->tp_flags;
756
122k
#endif
757
122k
    return ((flags & feature) != 0);
758
122k
}
moduleobject.c:PyType_HasFeature
Line
Count
Source
749
1.25M
{
750
1.25M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
1.25M
    flags = type->tp_flags;
756
1.25M
#endif
757
1.25M
    return ((flags & feature) != 0);
758
1.25M
}
object.c:PyType_HasFeature
Line
Count
Source
749
822M
{
750
822M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
822M
    flags = type->tp_flags;
756
822M
#endif
757
822M
    return ((flags & feature) != 0);
758
822M
}
Unexecuted instantiation: obmalloc.c:PyType_HasFeature
Unexecuted instantiation: picklebufobject.c:PyType_HasFeature
Unexecuted instantiation: rangeobject.c:PyType_HasFeature
sentinelobject.c:PyType_HasFeature
Line
Count
Source
749
61
{
750
61
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
61
    flags = type->tp_flags;
756
61
#endif
757
61
    return ((flags & feature) != 0);
758
61
}
Unexecuted instantiation: setobject.c:PyType_HasFeature
Unexecuted instantiation: sliceobject.c:PyType_HasFeature
structseq.c:PyType_HasFeature
Line
Count
Source
749
120k
{
750
120k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
120k
    flags = type->tp_flags;
756
120k
#endif
757
120k
    return ((flags & feature) != 0);
758
120k
}
Unexecuted instantiation: templateobject.c:PyType_HasFeature
tupleobject.c:PyType_HasFeature
Line
Count
Source
749
88.5M
{
750
88.5M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
88.5M
    flags = type->tp_flags;
756
88.5M
#endif
757
88.5M
    return ((flags & feature) != 0);
758
88.5M
}
typeobject.c:PyType_HasFeature
Line
Count
Source
749
389M
{
750
389M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
389M
    flags = type->tp_flags;
756
389M
#endif
757
389M
    return ((flags & feature) != 0);
758
389M
}
typevarobject.c:PyType_HasFeature
Line
Count
Source
749
208
{
750
208
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
208
    flags = type->tp_flags;
756
208
#endif
757
208
    return ((flags & feature) != 0);
758
208
}
unicode_format.c:PyType_HasFeature
Line
Count
Source
749
51.4M
{
750
51.4M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
51.4M
    flags = type->tp_flags;
756
51.4M
#endif
757
51.4M
    return ((flags & feature) != 0);
758
51.4M
}
Unexecuted instantiation: unicode_formatter.c:PyType_HasFeature
unicode_writer.c:PyType_HasFeature
Line
Count
Source
749
598k
{
750
598k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
598k
    flags = type->tp_flags;
756
598k
#endif
757
598k
    return ((flags & feature) != 0);
758
598k
}
Unexecuted instantiation: unicodectype.c:PyType_HasFeature
unicodeobject.c:PyType_HasFeature
Line
Count
Source
749
1.48G
{
750
1.48G
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
1.48G
    flags = type->tp_flags;
756
1.48G
#endif
757
1.48G
    return ((flags & feature) != 0);
758
1.48G
}
unionobject.c:PyType_HasFeature
Line
Count
Source
749
3.24k
{
750
3.24k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
3.24k
    flags = type->tp_flags;
756
3.24k
#endif
757
3.24k
    return ((flags & feature) != 0);
758
3.24k
}
weakrefobject.c:PyType_HasFeature
Line
Count
Source
749
53.2M
{
750
53.2M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
53.2M
    flags = type->tp_flags;
756
53.2M
#endif
757
53.2M
    return ((flags & feature) != 0);
758
53.2M
}
_warnings.c:PyType_HasFeature
Line
Count
Source
749
13.2M
{
750
13.2M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
13.2M
    flags = type->tp_flags;
756
13.2M
#endif
757
13.2M
    return ((flags & feature) != 0);
758
13.2M
}
bltinmodule.c:PyType_HasFeature
Line
Count
Source
749
301M
{
750
301M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
301M
    flags = type->tp_flags;
756
301M
#endif
757
301M
    return ((flags & feature) != 0);
758
301M
}
ceval.c:PyType_HasFeature
Line
Count
Source
749
398M
{
750
398M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
398M
    flags = type->tp_flags;
756
398M
#endif
757
398M
    return ((flags & feature) != 0);
758
398M
}
codecs.c:PyType_HasFeature
Line
Count
Source
749
5.63M
{
750
5.63M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
5.63M
    flags = type->tp_flags;
756
5.63M
#endif
757
5.63M
    return ((flags & feature) != 0);
758
5.63M
}
codegen.c:PyType_HasFeature
Line
Count
Source
749
317
{
750
317
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
317
    flags = type->tp_flags;
756
317
#endif
757
317
    return ((flags & feature) != 0);
758
317
}
Unexecuted instantiation: compile.c:PyType_HasFeature
context.c:PyType_HasFeature
Line
Count
Source
749
65
{
750
65
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
65
    flags = type->tp_flags;
756
65
#endif
757
65
    return ((flags & feature) != 0);
758
65
}
errors.c:PyType_HasFeature
Line
Count
Source
749
553M
{
750
553M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
553M
    flags = type->tp_flags;
756
553M
#endif
757
553M
    return ((flags & feature) != 0);
758
553M
}
flowgraph.c:PyType_HasFeature
Line
Count
Source
749
72
{
750
72
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
72
    flags = type->tp_flags;
756
72
#endif
757
72
    return ((flags & feature) != 0);
758
72
}
Unexecuted instantiation: frame.c:PyType_HasFeature
Unexecuted instantiation: future.c:PyType_HasFeature
Unexecuted instantiation: gc.c:PyType_HasFeature
Unexecuted instantiation: gc_gil.c:PyType_HasFeature
getargs.c:PyType_HasFeature
Line
Count
Source
749
25.6M
{
750
25.6M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
25.6M
    flags = type->tp_flags;
756
25.6M
#endif
757
25.6M
    return ((flags & feature) != 0);
758
25.6M
}
Unexecuted instantiation: ceval_gil.c:PyType_HasFeature
Unexecuted instantiation: hamt.c:PyType_HasFeature
Unexecuted instantiation: hashtable.c:PyType_HasFeature
import.c:PyType_HasFeature
Line
Count
Source
749
2.27M
{
750
2.27M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
2.27M
    flags = type->tp_flags;
756
2.27M
#endif
757
2.27M
    return ((flags & feature) != 0);
758
2.27M
}
importdl.c:PyType_HasFeature
Line
Count
Source
749
422
{
750
422
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
422
    flags = type->tp_flags;
756
422
#endif
757
422
    return ((flags & feature) != 0);
758
422
}
initconfig.c:PyType_HasFeature
Line
Count
Source
749
720
{
750
720
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
720
    flags = type->tp_flags;
756
720
#endif
757
720
    return ((flags & feature) != 0);
758
720
}
Unexecuted instantiation: instrumentation.c:PyType_HasFeature
Unexecuted instantiation: instruction_sequence.c:PyType_HasFeature
intrinsics.c:PyType_HasFeature
Line
Count
Source
749
42.5k
{
750
42.5k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
42.5k
    flags = type->tp_flags;
756
42.5k
#endif
757
42.5k
    return ((flags & feature) != 0);
758
42.5k
}
Unexecuted instantiation: legacy_tracing.c:PyType_HasFeature
Unexecuted instantiation: lock.c:PyType_HasFeature
Unexecuted instantiation: marshal.c:PyType_HasFeature
Unexecuted instantiation: modsupport.c:PyType_HasFeature
Unexecuted instantiation: mysnprintf.c:PyType_HasFeature
Unexecuted instantiation: parking_lot.c:PyType_HasFeature
Unexecuted instantiation: preconfig.c:PyType_HasFeature
Unexecuted instantiation: pyarena.c:PyType_HasFeature
Unexecuted instantiation: pyctype.c:PyType_HasFeature
Unexecuted instantiation: pyhash.c:PyType_HasFeature
pylifecycle.c:PyType_HasFeature
Line
Count
Source
749
36
{
750
36
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
36
    flags = type->tp_flags;
756
36
#endif
757
36
    return ((flags & feature) != 0);
758
36
}
Unexecuted instantiation: pymath.c:PyType_HasFeature
Unexecuted instantiation: pystate.c:PyType_HasFeature
pythonrun.c:PyType_HasFeature
Line
Count
Source
749
125k
{
750
125k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
125k
    flags = type->tp_flags;
756
125k
#endif
757
125k
    return ((flags & feature) != 0);
758
125k
}
Unexecuted instantiation: pytime.c:PyType_HasFeature
Unexecuted instantiation: qsbr.c:PyType_HasFeature
Unexecuted instantiation: bootstrap_hash.c:PyType_HasFeature
specialize.c:PyType_HasFeature
Line
Count
Source
749
2.95M
{
750
2.95M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
2.95M
    flags = type->tp_flags;
756
2.95M
#endif
757
2.95M
    return ((flags & feature) != 0);
758
2.95M
}
Unexecuted instantiation: slots.c:PyType_HasFeature
Unexecuted instantiation: slots_generated.c:PyType_HasFeature
Unexecuted instantiation: structmember.c:PyType_HasFeature
symtable.c:PyType_HasFeature
Line
Count
Source
749
51.5k
{
750
51.5k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
51.5k
    flags = type->tp_flags;
756
51.5k
#endif
757
51.5k
    return ((flags & feature) != 0);
758
51.5k
}
sysmodule.c:PyType_HasFeature
Line
Count
Source
749
864k
{
750
864k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
864k
    flags = type->tp_flags;
756
864k
#endif
757
864k
    return ((flags & feature) != 0);
758
864k
}
Unexecuted instantiation: thread.c:PyType_HasFeature
Unexecuted instantiation: traceback.c:PyType_HasFeature
Unexecuted instantiation: tracemalloc.c:PyType_HasFeature
Unexecuted instantiation: getopt.c:PyType_HasFeature
Unexecuted instantiation: pystrcmp.c:PyType_HasFeature
Unexecuted instantiation: pystrtod.c:PyType_HasFeature
Unexecuted instantiation: pystrhex.c:PyType_HasFeature
Unexecuted instantiation: dtoa.c:PyType_HasFeature
Unexecuted instantiation: fileutils.c:PyType_HasFeature
Unexecuted instantiation: suggestions.c:PyType_HasFeature
Unexecuted instantiation: perf_trampoline.c:PyType_HasFeature
Unexecuted instantiation: perf_jit_trampoline.c:PyType_HasFeature
Unexecuted instantiation: jit_unwind.c:PyType_HasFeature
Unexecuted instantiation: remote_debugging.c:PyType_HasFeature
Unexecuted instantiation: dynload_shlib.c:PyType_HasFeature
Unexecuted instantiation: config.c:PyType_HasFeature
Unexecuted instantiation: gcmodule.c:PyType_HasFeature
Unexecuted instantiation: _asynciomodule.c:PyType_HasFeature
Unexecuted instantiation: atexitmodule.c:PyType_HasFeature
Unexecuted instantiation: faulthandler.c:PyType_HasFeature
posixmodule.c:PyType_HasFeature
Line
Count
Source
749
2.75M
{
750
2.75M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
2.75M
    flags = type->tp_flags;
756
2.75M
#endif
757
2.75M
    return ((flags & feature) != 0);
758
2.75M
}
Unexecuted instantiation: signalmodule.c:PyType_HasFeature
Unexecuted instantiation: _tracemalloc.c:PyType_HasFeature
Unexecuted instantiation: _suggestions.c:PyType_HasFeature
_datetimemodule.c:PyType_HasFeature
Line
Count
Source
749
36.5k
{
750
36.5k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
36.5k
    flags = type->tp_flags;
756
36.5k
#endif
757
36.5k
    return ((flags & feature) != 0);
758
36.5k
}
_codecsmodule.c:PyType_HasFeature
Line
Count
Source
749
2.26M
{
750
2.26M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
2.26M
    flags = type->tp_flags;
756
2.26M
#endif
757
2.26M
    return ((flags & feature) != 0);
758
2.26M
}
_collectionsmodule.c:PyType_HasFeature
Line
Count
Source
749
33.8k
{
750
33.8k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
33.8k
    flags = type->tp_flags;
756
33.8k
#endif
757
33.8k
    return ((flags & feature) != 0);
758
33.8k
}
Unexecuted instantiation: errnomodule.c:PyType_HasFeature
_iomodule.c:PyType_HasFeature
Line
Count
Source
749
55.2k
{
750
55.2k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
55.2k
    flags = type->tp_flags;
756
55.2k
#endif
757
55.2k
    return ((flags & feature) != 0);
758
55.2k
}
Unexecuted instantiation: iobase.c:PyType_HasFeature
fileio.c:PyType_HasFeature
Line
Count
Source
749
24.6k
{
750
24.6k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
24.6k
    flags = type->tp_flags;
756
24.6k
#endif
757
24.6k
    return ((flags & feature) != 0);
758
24.6k
}
Unexecuted instantiation: bytesio.c:PyType_HasFeature
bufferedio.c:PyType_HasFeature
Line
Count
Source
749
12.3k
{
750
12.3k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
12.3k
    flags = type->tp_flags;
756
12.3k
#endif
757
12.3k
    return ((flags & feature) != 0);
758
12.3k
}
textio.c:PyType_HasFeature
Line
Count
Source
749
282k
{
750
282k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
282k
    flags = type->tp_flags;
756
282k
#endif
757
282k
    return ((flags & feature) != 0);
758
282k
}
stringio.c:PyType_HasFeature
Line
Count
Source
749
95.0k
{
750
95.0k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
95.0k
    flags = type->tp_flags;
756
95.0k
#endif
757
95.0k
    return ((flags & feature) != 0);
758
95.0k
}
itertoolsmodule.c:PyType_HasFeature
Line
Count
Source
749
8
{
750
8
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
8
    flags = type->tp_flags;
756
8
#endif
757
8
    return ((flags & feature) != 0);
758
8
}
sre.c:PyType_HasFeature
Line
Count
Source
749
100M
{
750
100M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
100M
    flags = type->tp_flags;
756
100M
#endif
757
100M
    return ((flags & feature) != 0);
758
100M
}
Unexecuted instantiation: _sysconfig.c:PyType_HasFeature
_threadmodule.c:PyType_HasFeature
Line
Count
Source
749
8
{
750
8
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
8
    flags = type->tp_flags;
756
8
#endif
757
8
    return ((flags & feature) != 0);
758
8
}
Unexecuted instantiation: timemodule.c:PyType_HasFeature
Unexecuted instantiation: _typesmodule.c:PyType_HasFeature
Unexecuted instantiation: _typingmodule.c:PyType_HasFeature
_weakref.c:PyType_HasFeature
Line
Count
Source
749
15.0k
{
750
15.0k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
15.0k
    flags = type->tp_flags;
756
15.0k
#endif
757
15.0k
    return ((flags & feature) != 0);
758
15.0k
}
_abc.c:PyType_HasFeature
Line
Count
Source
749
111k
{
750
111k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
111k
    flags = type->tp_flags;
756
111k
#endif
757
111k
    return ((flags & feature) != 0);
758
111k
}
_functoolsmodule.c:PyType_HasFeature
Line
Count
Source
749
50.3k
{
750
50.3k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
50.3k
    flags = type->tp_flags;
756
50.3k
#endif
757
50.3k
    return ((flags & feature) != 0);
758
50.3k
}
Unexecuted instantiation: _localemodule.c:PyType_HasFeature
Unexecuted instantiation: _opcode.c:PyType_HasFeature
_operator.c:PyType_HasFeature
Line
Count
Source
749
4
{
750
4
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
4
    flags = type->tp_flags;
756
4
#endif
757
4
    return ((flags & feature) != 0);
758
4
}
_stat.c:PyType_HasFeature
Line
Count
Source
749
3.19k
{
750
3.19k
    unsigned long flags;
751
3.19k
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
3.19k
    flags = PyType_GetFlags(type);
754
#else
755
    flags = type->tp_flags;
756
#endif
757
3.19k
    return ((flags & feature) != 0);
758
3.19k
}
Unexecuted instantiation: symtablemodule.c:PyType_HasFeature
Unexecuted instantiation: pwdmodule.c:PyType_HasFeature
getpath.c:PyType_HasFeature
Line
Count
Source
749
864
{
750
864
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
864
    flags = type->tp_flags;
756
864
#endif
757
864
    return ((flags & feature) != 0);
758
864
}
Unexecuted instantiation: frozen.c:PyType_HasFeature
Unexecuted instantiation: getbuildinfo.c:PyType_HasFeature
Unexecuted instantiation: peg_api.c:PyType_HasFeature
Unexecuted instantiation: file_tokenizer.c:PyType_HasFeature
Unexecuted instantiation: helpers.c:PyType_HasFeature
Unexecuted instantiation: myreadline.c:PyType_HasFeature
abstract.c:PyType_HasFeature
Line
Count
Source
749
510M
{
750
510M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
510M
    flags = type->tp_flags;
756
510M
#endif
757
510M
    return ((flags & feature) != 0);
758
510M
}
Unexecuted instantiation: boolobject.c:PyType_HasFeature
bytes_methods.c:PyType_HasFeature
Line
Count
Source
749
3.86M
{
750
3.86M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
3.86M
    flags = type->tp_flags;
756
3.86M
#endif
757
3.86M
    return ((flags & feature) != 0);
758
3.86M
}
bytearrayobject.c:PyType_HasFeature
Line
Count
Source
749
23.6M
{
750
23.6M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
23.6M
    flags = type->tp_flags;
756
23.6M
#endif
757
23.6M
    return ((flags & feature) != 0);
758
23.6M
}
Unexecuted instantiation: capsule.c:PyType_HasFeature
Unexecuted instantiation: cellobject.c:PyType_HasFeature
Unexecuted instantiation: classobject.c:PyType_HasFeature
codeobject.c:PyType_HasFeature
Line
Count
Source
749
1.81M
{
750
1.81M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
1.81M
    flags = type->tp_flags;
756
1.81M
#endif
757
1.81M
    return ((flags & feature) != 0);
758
1.81M
}
Unexecuted instantiation: complexobject.c:PyType_HasFeature
descrobject.c:PyType_HasFeature
Line
Count
Source
749
31.6M
{
750
31.6M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
31.6M
    flags = type->tp_flags;
756
31.6M
#endif
757
31.6M
    return ((flags & feature) != 0);
758
31.6M
}
enumobject.c:PyType_HasFeature
Line
Count
Source
749
43.1M
{
750
43.1M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
43.1M
    flags = type->tp_flags;
756
43.1M
#endif
757
43.1M
    return ((flags & feature) != 0);
758
43.1M
}
genobject.c:PyType_HasFeature
Line
Count
Source
749
84.1k
{
750
84.1k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
84.1k
    flags = type->tp_flags;
756
84.1k
#endif
757
84.1k
    return ((flags & feature) != 0);
758
84.1k
}
fileobject.c:PyType_HasFeature
Line
Count
Source
749
6.16k
{
750
6.16k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
6.16k
    flags = type->tp_flags;
756
6.16k
#endif
757
6.16k
    return ((flags & feature) != 0);
758
6.16k
}
Unexecuted instantiation: frameobject.c:PyType_HasFeature
funcobject.c:PyType_HasFeature
Line
Count
Source
749
101k
{
750
101k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
101k
    flags = type->tp_flags;
756
101k
#endif
757
101k
    return ((flags & feature) != 0);
758
101k
}
Unexecuted instantiation: interpolationobject.c:PyType_HasFeature
iterobject.c:PyType_HasFeature
Line
Count
Source
749
3.32M
{
750
3.32M
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
3.32M
    flags = type->tp_flags;
756
3.32M
#endif
757
3.32M
    return ((flags & feature) != 0);
758
3.32M
}
lazyimportobject.c:PyType_HasFeature
Line
Count
Source
749
707
{
750
707
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
707
    flags = type->tp_flags;
756
707
#endif
757
707
    return ((flags & feature) != 0);
758
707
}
Unexecuted instantiation: odictobject.c:PyType_HasFeature
methodobject.c:PyType_HasFeature
Line
Count
Source
749
216
{
750
216
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
216
    flags = type->tp_flags;
756
216
#endif
757
216
    return ((flags & feature) != 0);
758
216
}
Unexecuted instantiation: namespaceobject.c:PyType_HasFeature
Unexecuted instantiation: _contextvars.c:PyType_HasFeature
Unexecuted instantiation: Python-ast.c:PyType_HasFeature
Python-tokenize.c:PyType_HasFeature
Line
Count
Source
749
4
{
750
4
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
4
    flags = type->tp_flags;
756
4
#endif
757
4
    return ((flags & feature) != 0);
758
4
}
Unexecuted instantiation: asdl.c:PyType_HasFeature
Unexecuted instantiation: assemble.c:PyType_HasFeature
Unexecuted instantiation: ast.c:PyType_HasFeature
ast_preprocess.c:PyType_HasFeature
Line
Count
Source
749
98
{
750
98
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
98
    flags = type->tp_flags;
756
98
#endif
757
98
    return ((flags & feature) != 0);
758
98
}
Unexecuted instantiation: ast_unparse.c:PyType_HasFeature
Unexecuted instantiation: critical_section.c:PyType_HasFeature
Unexecuted instantiation: crossinterp.c:PyType_HasFeature
Unexecuted instantiation: getcopyright.c:PyType_HasFeature
Unexecuted instantiation: getplatform.c:PyType_HasFeature
Unexecuted instantiation: getversion.c:PyType_HasFeature
Unexecuted instantiation: optimizer.c:PyType_HasFeature
Unexecuted instantiation: pathconfig.c:PyType_HasFeature
pegen.c:PyType_HasFeature
Line
Count
Source
749
65.0k
{
750
65.0k
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
65.0k
    flags = type->tp_flags;
756
65.0k
#endif
757
65.0k
    return ((flags & feature) != 0);
758
65.0k
}
Unexecuted instantiation: pegen_errors.c:PyType_HasFeature
Unexecuted instantiation: parser.c:PyType_HasFeature
Unexecuted instantiation: buffer.c:PyType_HasFeature
Unexecuted instantiation: lexer.c:PyType_HasFeature
Unexecuted instantiation: number.c:PyType_HasFeature
Unexecuted instantiation: state.c:PyType_HasFeature
Unexecuted instantiation: string.c:PyType_HasFeature
readline_tokenizer.c:PyType_HasFeature
Line
Count
Source
749
344
{
750
344
    unsigned long flags;
751
#ifdef Py_LIMITED_API
752
    // PyTypeObject is opaque in the limited C API
753
    flags = PyType_GetFlags(type);
754
#else
755
344
    flags = type->tp_flags;
756
344
#endif
757
344
    return ((flags & feature) != 0);
758
344
}
Unexecuted instantiation: string_tokenizer.c:PyType_HasFeature
Unexecuted instantiation: utf8_tokenizer.c:PyType_HasFeature
Unexecuted instantiation: getcompiler.c:PyType_HasFeature
Unexecuted instantiation: mystrtoul.c:PyType_HasFeature
Unexecuted instantiation: token.c:PyType_HasFeature
Unexecuted instantiation: action_helpers.c:PyType_HasFeature
Unexecuted instantiation: string_parser.c:PyType_HasFeature
759
760
8.16G
#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
761
762
610M
static inline int PyType_Check(PyObject *op) {
763
610M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
610M
}
Unexecuted instantiation: bytesobject.c:PyType_Check
Unexecuted instantiation: call.c:PyType_Check
Unexecuted instantiation: exceptions.c:PyType_Check
genericaliasobject.c:PyType_Check
Line
Count
Source
762
200
static inline int PyType_Check(PyObject *op) {
763
200
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
200
}
Unexecuted instantiation: floatobject.c:PyType_Check
Unexecuted instantiation: listobject.c:PyType_Check
Unexecuted instantiation: longobject.c:PyType_Check
Unexecuted instantiation: dictobject.c:PyType_Check
Unexecuted instantiation: memoryobject.c:PyType_Check
Unexecuted instantiation: moduleobject.c:PyType_Check
Unexecuted instantiation: object.c:PyType_Check
Unexecuted instantiation: obmalloc.c:PyType_Check
Unexecuted instantiation: picklebufobject.c:PyType_Check
Unexecuted instantiation: rangeobject.c:PyType_Check
Unexecuted instantiation: sentinelobject.c:PyType_Check
Unexecuted instantiation: setobject.c:PyType_Check
Unexecuted instantiation: sliceobject.c:PyType_Check
Unexecuted instantiation: structseq.c:PyType_Check
Unexecuted instantiation: templateobject.c:PyType_Check
Unexecuted instantiation: tupleobject.c:PyType_Check
typeobject.c:PyType_Check
Line
Count
Source
762
75.4M
static inline int PyType_Check(PyObject *op) {
763
75.4M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
75.4M
}
Unexecuted instantiation: typevarobject.c:PyType_Check
Unexecuted instantiation: unicode_format.c:PyType_Check
Unexecuted instantiation: unicode_formatter.c:PyType_Check
Unexecuted instantiation: unicode_writer.c:PyType_Check
Unexecuted instantiation: unicodectype.c:PyType_Check
Unexecuted instantiation: unicodeobject.c:PyType_Check
unionobject.c:PyType_Check
Line
Count
Source
762
2.28k
static inline int PyType_Check(PyObject *op) {
763
2.28k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
2.28k
}
weakrefobject.c:PyType_Check
Line
Count
Source
762
53.2M
static inline int PyType_Check(PyObject *op) {
763
53.2M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
53.2M
}
_warnings.c:PyType_Check
Line
Count
Source
762
170k
static inline int PyType_Check(PyObject *op) {
763
170k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
170k
}
bltinmodule.c:PyType_Check
Line
Count
Source
762
20.4k
static inline int PyType_Check(PyObject *op) {
763
20.4k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
20.4k
}
ceval.c:PyType_Check
Line
Count
Source
762
200M
static inline int PyType_Check(PyObject *op) {
763
200M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
200M
}
Unexecuted instantiation: codecs.c:PyType_Check
Unexecuted instantiation: codegen.c:PyType_Check
Unexecuted instantiation: compile.c:PyType_Check
Unexecuted instantiation: context.c:PyType_Check
errors.c:PyType_Check
Line
Count
Source
762
160M
static inline int PyType_Check(PyObject *op) {
763
160M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
160M
}
Unexecuted instantiation: flowgraph.c:PyType_Check
Unexecuted instantiation: frame.c:PyType_Check
Unexecuted instantiation: future.c:PyType_Check
Unexecuted instantiation: gc.c:PyType_Check
Unexecuted instantiation: gc_gil.c:PyType_Check
Unexecuted instantiation: getargs.c:PyType_Check
Unexecuted instantiation: ceval_gil.c:PyType_Check
Unexecuted instantiation: hamt.c:PyType_Check
Unexecuted instantiation: hashtable.c:PyType_Check
Unexecuted instantiation: import.c:PyType_Check
Unexecuted instantiation: importdl.c:PyType_Check
Unexecuted instantiation: initconfig.c:PyType_Check
Unexecuted instantiation: instrumentation.c:PyType_Check
Unexecuted instantiation: instruction_sequence.c:PyType_Check
Unexecuted instantiation: intrinsics.c:PyType_Check
Unexecuted instantiation: legacy_tracing.c:PyType_Check
Unexecuted instantiation: lock.c:PyType_Check
Unexecuted instantiation: marshal.c:PyType_Check
Unexecuted instantiation: modsupport.c:PyType_Check
Unexecuted instantiation: mysnprintf.c:PyType_Check
Unexecuted instantiation: parking_lot.c:PyType_Check
Unexecuted instantiation: preconfig.c:PyType_Check
Unexecuted instantiation: pyarena.c:PyType_Check
Unexecuted instantiation: pyctype.c:PyType_Check
Unexecuted instantiation: pyhash.c:PyType_Check
Unexecuted instantiation: pylifecycle.c:PyType_Check
Unexecuted instantiation: pymath.c:PyType_Check
Unexecuted instantiation: pystate.c:PyType_Check
Unexecuted instantiation: pythonrun.c:PyType_Check
Unexecuted instantiation: pytime.c:PyType_Check
Unexecuted instantiation: qsbr.c:PyType_Check
Unexecuted instantiation: bootstrap_hash.c:PyType_Check
specialize.c:PyType_Check
Line
Count
Source
762
2.88M
static inline int PyType_Check(PyObject *op) {
763
2.88M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
2.88M
}
Unexecuted instantiation: slots.c:PyType_Check
Unexecuted instantiation: slots_generated.c:PyType_Check
Unexecuted instantiation: structmember.c:PyType_Check
Unexecuted instantiation: symtable.c:PyType_Check
Unexecuted instantiation: sysmodule.c:PyType_Check
Unexecuted instantiation: thread.c:PyType_Check
Unexecuted instantiation: traceback.c:PyType_Check
Unexecuted instantiation: tracemalloc.c:PyType_Check
Unexecuted instantiation: getopt.c:PyType_Check
Unexecuted instantiation: pystrcmp.c:PyType_Check
Unexecuted instantiation: pystrtod.c:PyType_Check
Unexecuted instantiation: pystrhex.c:PyType_Check
Unexecuted instantiation: dtoa.c:PyType_Check
Unexecuted instantiation: fileutils.c:PyType_Check
Unexecuted instantiation: suggestions.c:PyType_Check
Unexecuted instantiation: perf_trampoline.c:PyType_Check
Unexecuted instantiation: perf_jit_trampoline.c:PyType_Check
Unexecuted instantiation: jit_unwind.c:PyType_Check
Unexecuted instantiation: remote_debugging.c:PyType_Check
Unexecuted instantiation: dynload_shlib.c:PyType_Check
Unexecuted instantiation: config.c:PyType_Check
Unexecuted instantiation: gcmodule.c:PyType_Check
Unexecuted instantiation: _asynciomodule.c:PyType_Check
Unexecuted instantiation: atexitmodule.c:PyType_Check
Unexecuted instantiation: faulthandler.c:PyType_Check
Unexecuted instantiation: posixmodule.c:PyType_Check
Unexecuted instantiation: signalmodule.c:PyType_Check
Unexecuted instantiation: _tracemalloc.c:PyType_Check
Unexecuted instantiation: _suggestions.c:PyType_Check
Unexecuted instantiation: _datetimemodule.c:PyType_Check
Unexecuted instantiation: _codecsmodule.c:PyType_Check
Unexecuted instantiation: _collectionsmodule.c:PyType_Check
Unexecuted instantiation: errnomodule.c:PyType_Check
Unexecuted instantiation: _iomodule.c:PyType_Check
Unexecuted instantiation: iobase.c:PyType_Check
Unexecuted instantiation: fileio.c:PyType_Check
Unexecuted instantiation: bytesio.c:PyType_Check
Unexecuted instantiation: bufferedio.c:PyType_Check
Unexecuted instantiation: textio.c:PyType_Check
Unexecuted instantiation: stringio.c:PyType_Check
Unexecuted instantiation: itertoolsmodule.c:PyType_Check
Unexecuted instantiation: sre.c:PyType_Check
Unexecuted instantiation: _sysconfig.c:PyType_Check
Unexecuted instantiation: _threadmodule.c:PyType_Check
Unexecuted instantiation: timemodule.c:PyType_Check
Unexecuted instantiation: _typesmodule.c:PyType_Check
Unexecuted instantiation: _typingmodule.c:PyType_Check
Unexecuted instantiation: _weakref.c:PyType_Check
_abc.c:PyType_Check
Line
Count
Source
762
35.6k
static inline int PyType_Check(PyObject *op) {
763
35.6k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
35.6k
}
Unexecuted instantiation: _functoolsmodule.c:PyType_Check
Unexecuted instantiation: _localemodule.c:PyType_Check
Unexecuted instantiation: _opcode.c:PyType_Check
Unexecuted instantiation: _operator.c:PyType_Check
Unexecuted instantiation: _stat.c:PyType_Check
Unexecuted instantiation: symtablemodule.c:PyType_Check
Unexecuted instantiation: pwdmodule.c:PyType_Check
Unexecuted instantiation: getpath.c:PyType_Check
Unexecuted instantiation: frozen.c:PyType_Check
Unexecuted instantiation: getbuildinfo.c:PyType_Check
Unexecuted instantiation: peg_api.c:PyType_Check
Unexecuted instantiation: file_tokenizer.c:PyType_Check
Unexecuted instantiation: helpers.c:PyType_Check
Unexecuted instantiation: myreadline.c:PyType_Check
abstract.c:PyType_Check
Line
Count
Source
762
86.5M
static inline int PyType_Check(PyObject *op) {
763
86.5M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
86.5M
}
Unexecuted instantiation: boolobject.c:PyType_Check
Unexecuted instantiation: bytes_methods.c:PyType_Check
Unexecuted instantiation: bytearrayobject.c:PyType_Check
Unexecuted instantiation: capsule.c:PyType_Check
Unexecuted instantiation: cellobject.c:PyType_Check
Unexecuted instantiation: classobject.c:PyType_Check
Unexecuted instantiation: codeobject.c:PyType_Check
Unexecuted instantiation: complexobject.c:PyType_Check
descrobject.c:PyType_Check
Line
Count
Source
762
31.5M
static inline int PyType_Check(PyObject *op) {
763
31.5M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
31.5M
}
Unexecuted instantiation: enumobject.c:PyType_Check
genobject.c:PyType_Check
Line
Count
Source
762
42.0k
static inline int PyType_Check(PyObject *op) {
763
42.0k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
42.0k
}
Unexecuted instantiation: fileobject.c:PyType_Check
Unexecuted instantiation: frameobject.c:PyType_Check
Unexecuted instantiation: funcobject.c:PyType_Check
Unexecuted instantiation: interpolationobject.c:PyType_Check
Unexecuted instantiation: iterobject.c:PyType_Check
Unexecuted instantiation: lazyimportobject.c:PyType_Check
Unexecuted instantiation: odictobject.c:PyType_Check
methodobject.c:PyType_Check
Line
Count
Source
762
108
static inline int PyType_Check(PyObject *op) {
763
108
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
764
108
}
Unexecuted instantiation: namespaceobject.c:PyType_Check
Unexecuted instantiation: _contextvars.c:PyType_Check
Unexecuted instantiation: Python-ast.c:PyType_Check
Unexecuted instantiation: Python-tokenize.c:PyType_Check
Unexecuted instantiation: asdl.c:PyType_Check
Unexecuted instantiation: assemble.c:PyType_Check
Unexecuted instantiation: ast.c:PyType_Check
Unexecuted instantiation: ast_preprocess.c:PyType_Check
Unexecuted instantiation: ast_unparse.c:PyType_Check
Unexecuted instantiation: critical_section.c:PyType_Check
Unexecuted instantiation: crossinterp.c:PyType_Check
Unexecuted instantiation: getcopyright.c:PyType_Check
Unexecuted instantiation: getplatform.c:PyType_Check
Unexecuted instantiation: getversion.c:PyType_Check
Unexecuted instantiation: optimizer.c:PyType_Check
Unexecuted instantiation: pathconfig.c:PyType_Check
Unexecuted instantiation: pegen.c:PyType_Check
Unexecuted instantiation: pegen_errors.c:PyType_Check
Unexecuted instantiation: parser.c:PyType_Check
Unexecuted instantiation: buffer.c:PyType_Check
Unexecuted instantiation: lexer.c:PyType_Check
Unexecuted instantiation: number.c:PyType_Check
Unexecuted instantiation: state.c:PyType_Check
Unexecuted instantiation: string.c:PyType_Check
Unexecuted instantiation: readline_tokenizer.c:PyType_Check
Unexecuted instantiation: string_tokenizer.c:PyType_Check
Unexecuted instantiation: utf8_tokenizer.c:PyType_Check
Unexecuted instantiation: getcompiler.c:PyType_Check
Unexecuted instantiation: mystrtoul.c:PyType_Check
Unexecuted instantiation: token.c:PyType_Check
Unexecuted instantiation: action_helpers.c:PyType_Check
Unexecuted instantiation: string_parser.c:PyType_Check
765
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
766
938M
#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
767
#endif
768
769
#define _PyType_CAST(op) \
770
342M
    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
771
772
84.9M
static inline int PyType_CheckExact(PyObject *op) {
773
84.9M
    return Py_IS_TYPE(op, &PyType_Type);
774
84.9M
}
Unexecuted instantiation: bytesobject.c:PyType_CheckExact
Unexecuted instantiation: call.c:PyType_CheckExact
Unexecuted instantiation: exceptions.c:PyType_CheckExact
Unexecuted instantiation: genericaliasobject.c:PyType_CheckExact
Unexecuted instantiation: floatobject.c:PyType_CheckExact
Unexecuted instantiation: listobject.c:PyType_CheckExact
Unexecuted instantiation: longobject.c:PyType_CheckExact
Unexecuted instantiation: dictobject.c:PyType_CheckExact
Unexecuted instantiation: memoryobject.c:PyType_CheckExact
Unexecuted instantiation: moduleobject.c:PyType_CheckExact
Unexecuted instantiation: object.c:PyType_CheckExact
Unexecuted instantiation: obmalloc.c:PyType_CheckExact
Unexecuted instantiation: picklebufobject.c:PyType_CheckExact
Unexecuted instantiation: rangeobject.c:PyType_CheckExact
Unexecuted instantiation: sentinelobject.c:PyType_CheckExact
Unexecuted instantiation: setobject.c:PyType_CheckExact
Unexecuted instantiation: sliceobject.c:PyType_CheckExact
Unexecuted instantiation: structseq.c:PyType_CheckExact
Unexecuted instantiation: templateobject.c:PyType_CheckExact
Unexecuted instantiation: tupleobject.c:PyType_CheckExact
Unexecuted instantiation: typeobject.c:PyType_CheckExact
Unexecuted instantiation: typevarobject.c:PyType_CheckExact
Unexecuted instantiation: unicode_format.c:PyType_CheckExact
Unexecuted instantiation: unicode_formatter.c:PyType_CheckExact
Unexecuted instantiation: unicode_writer.c:PyType_CheckExact
Unexecuted instantiation: unicodectype.c:PyType_CheckExact
Unexecuted instantiation: unicodeobject.c:PyType_CheckExact
Unexecuted instantiation: unionobject.c:PyType_CheckExact
Unexecuted instantiation: weakrefobject.c:PyType_CheckExact
Unexecuted instantiation: _warnings.c:PyType_CheckExact
Unexecuted instantiation: bltinmodule.c:PyType_CheckExact
Unexecuted instantiation: ceval.c:PyType_CheckExact
Unexecuted instantiation: codecs.c:PyType_CheckExact
Unexecuted instantiation: codegen.c:PyType_CheckExact
Unexecuted instantiation: compile.c:PyType_CheckExact
Unexecuted instantiation: context.c:PyType_CheckExact
Unexecuted instantiation: errors.c:PyType_CheckExact
Unexecuted instantiation: flowgraph.c:PyType_CheckExact
Unexecuted instantiation: frame.c:PyType_CheckExact
Unexecuted instantiation: future.c:PyType_CheckExact
Unexecuted instantiation: gc.c:PyType_CheckExact
Unexecuted instantiation: gc_gil.c:PyType_CheckExact
Unexecuted instantiation: getargs.c:PyType_CheckExact
Unexecuted instantiation: ceval_gil.c:PyType_CheckExact
Unexecuted instantiation: hamt.c:PyType_CheckExact
Unexecuted instantiation: hashtable.c:PyType_CheckExact
Unexecuted instantiation: import.c:PyType_CheckExact
Unexecuted instantiation: importdl.c:PyType_CheckExact
Unexecuted instantiation: initconfig.c:PyType_CheckExact
Unexecuted instantiation: instrumentation.c:PyType_CheckExact
Unexecuted instantiation: instruction_sequence.c:PyType_CheckExact
Unexecuted instantiation: intrinsics.c:PyType_CheckExact
Unexecuted instantiation: legacy_tracing.c:PyType_CheckExact
Unexecuted instantiation: lock.c:PyType_CheckExact
Unexecuted instantiation: marshal.c:PyType_CheckExact
Unexecuted instantiation: modsupport.c:PyType_CheckExact
Unexecuted instantiation: mysnprintf.c:PyType_CheckExact
Unexecuted instantiation: parking_lot.c:PyType_CheckExact
Unexecuted instantiation: preconfig.c:PyType_CheckExact
Unexecuted instantiation: pyarena.c:PyType_CheckExact
Unexecuted instantiation: pyctype.c:PyType_CheckExact
Unexecuted instantiation: pyhash.c:PyType_CheckExact
Unexecuted instantiation: pylifecycle.c:PyType_CheckExact
Unexecuted instantiation: pymath.c:PyType_CheckExact
Unexecuted instantiation: pystate.c:PyType_CheckExact
Unexecuted instantiation: pythonrun.c:PyType_CheckExact
Unexecuted instantiation: pytime.c:PyType_CheckExact
Unexecuted instantiation: qsbr.c:PyType_CheckExact
Unexecuted instantiation: bootstrap_hash.c:PyType_CheckExact
Unexecuted instantiation: specialize.c:PyType_CheckExact
Unexecuted instantiation: slots.c:PyType_CheckExact
Unexecuted instantiation: slots_generated.c:PyType_CheckExact
Unexecuted instantiation: structmember.c:PyType_CheckExact
Unexecuted instantiation: symtable.c:PyType_CheckExact
Unexecuted instantiation: sysmodule.c:PyType_CheckExact
Unexecuted instantiation: thread.c:PyType_CheckExact
Unexecuted instantiation: traceback.c:PyType_CheckExact
Unexecuted instantiation: tracemalloc.c:PyType_CheckExact
Unexecuted instantiation: getopt.c:PyType_CheckExact
Unexecuted instantiation: pystrcmp.c:PyType_CheckExact
Unexecuted instantiation: pystrtod.c:PyType_CheckExact
Unexecuted instantiation: pystrhex.c:PyType_CheckExact
Unexecuted instantiation: dtoa.c:PyType_CheckExact
Unexecuted instantiation: fileutils.c:PyType_CheckExact
Unexecuted instantiation: suggestions.c:PyType_CheckExact
Unexecuted instantiation: perf_trampoline.c:PyType_CheckExact
Unexecuted instantiation: perf_jit_trampoline.c:PyType_CheckExact
Unexecuted instantiation: jit_unwind.c:PyType_CheckExact
Unexecuted instantiation: remote_debugging.c:PyType_CheckExact
Unexecuted instantiation: dynload_shlib.c:PyType_CheckExact
Unexecuted instantiation: config.c:PyType_CheckExact
Unexecuted instantiation: gcmodule.c:PyType_CheckExact
Unexecuted instantiation: _asynciomodule.c:PyType_CheckExact
Unexecuted instantiation: atexitmodule.c:PyType_CheckExact
Unexecuted instantiation: faulthandler.c:PyType_CheckExact
Unexecuted instantiation: posixmodule.c:PyType_CheckExact
Unexecuted instantiation: signalmodule.c:PyType_CheckExact
Unexecuted instantiation: _tracemalloc.c:PyType_CheckExact
Unexecuted instantiation: _suggestions.c:PyType_CheckExact
Unexecuted instantiation: _datetimemodule.c:PyType_CheckExact
Unexecuted instantiation: _codecsmodule.c:PyType_CheckExact
Unexecuted instantiation: _collectionsmodule.c:PyType_CheckExact
Unexecuted instantiation: errnomodule.c:PyType_CheckExact
Unexecuted instantiation: _iomodule.c:PyType_CheckExact
Unexecuted instantiation: iobase.c:PyType_CheckExact
Unexecuted instantiation: fileio.c:PyType_CheckExact
Unexecuted instantiation: bytesio.c:PyType_CheckExact
Unexecuted instantiation: bufferedio.c:PyType_CheckExact
Unexecuted instantiation: textio.c:PyType_CheckExact
Unexecuted instantiation: stringio.c:PyType_CheckExact
Unexecuted instantiation: itertoolsmodule.c:PyType_CheckExact
Unexecuted instantiation: sre.c:PyType_CheckExact
Unexecuted instantiation: _sysconfig.c:PyType_CheckExact
Unexecuted instantiation: _threadmodule.c:PyType_CheckExact
Unexecuted instantiation: timemodule.c:PyType_CheckExact
Unexecuted instantiation: _typesmodule.c:PyType_CheckExact
Unexecuted instantiation: _typingmodule.c:PyType_CheckExact
Unexecuted instantiation: _weakref.c:PyType_CheckExact
Unexecuted instantiation: _abc.c:PyType_CheckExact
Unexecuted instantiation: _functoolsmodule.c:PyType_CheckExact
Unexecuted instantiation: _localemodule.c:PyType_CheckExact
Unexecuted instantiation: _opcode.c:PyType_CheckExact
Unexecuted instantiation: _operator.c:PyType_CheckExact
Unexecuted instantiation: _stat.c:PyType_CheckExact
Unexecuted instantiation: symtablemodule.c:PyType_CheckExact
Unexecuted instantiation: pwdmodule.c:PyType_CheckExact
Unexecuted instantiation: getpath.c:PyType_CheckExact
Unexecuted instantiation: frozen.c:PyType_CheckExact
Unexecuted instantiation: getbuildinfo.c:PyType_CheckExact
Unexecuted instantiation: peg_api.c:PyType_CheckExact
Unexecuted instantiation: file_tokenizer.c:PyType_CheckExact
Unexecuted instantiation: helpers.c:PyType_CheckExact
Unexecuted instantiation: myreadline.c:PyType_CheckExact
abstract.c:PyType_CheckExact
Line
Count
Source
772
84.9M
static inline int PyType_CheckExact(PyObject *op) {
773
84.9M
    return Py_IS_TYPE(op, &PyType_Type);
774
84.9M
}
Unexecuted instantiation: boolobject.c:PyType_CheckExact
Unexecuted instantiation: bytes_methods.c:PyType_CheckExact
Unexecuted instantiation: bytearrayobject.c:PyType_CheckExact
Unexecuted instantiation: capsule.c:PyType_CheckExact
Unexecuted instantiation: cellobject.c:PyType_CheckExact
Unexecuted instantiation: classobject.c:PyType_CheckExact
Unexecuted instantiation: codeobject.c:PyType_CheckExact
Unexecuted instantiation: complexobject.c:PyType_CheckExact
Unexecuted instantiation: descrobject.c:PyType_CheckExact
Unexecuted instantiation: enumobject.c:PyType_CheckExact
Unexecuted instantiation: genobject.c:PyType_CheckExact
Unexecuted instantiation: fileobject.c:PyType_CheckExact
Unexecuted instantiation: frameobject.c:PyType_CheckExact
Unexecuted instantiation: funcobject.c:PyType_CheckExact
Unexecuted instantiation: interpolationobject.c:PyType_CheckExact
Unexecuted instantiation: iterobject.c:PyType_CheckExact
Unexecuted instantiation: lazyimportobject.c:PyType_CheckExact
Unexecuted instantiation: odictobject.c:PyType_CheckExact
Unexecuted instantiation: methodobject.c:PyType_CheckExact
Unexecuted instantiation: namespaceobject.c:PyType_CheckExact
Unexecuted instantiation: _contextvars.c:PyType_CheckExact
Unexecuted instantiation: Python-ast.c:PyType_CheckExact
Unexecuted instantiation: Python-tokenize.c:PyType_CheckExact
Unexecuted instantiation: asdl.c:PyType_CheckExact
Unexecuted instantiation: assemble.c:PyType_CheckExact
Unexecuted instantiation: ast.c:PyType_CheckExact
Unexecuted instantiation: ast_preprocess.c:PyType_CheckExact
Unexecuted instantiation: ast_unparse.c:PyType_CheckExact
Unexecuted instantiation: critical_section.c:PyType_CheckExact
Unexecuted instantiation: crossinterp.c:PyType_CheckExact
Unexecuted instantiation: getcopyright.c:PyType_CheckExact
Unexecuted instantiation: getplatform.c:PyType_CheckExact
Unexecuted instantiation: getversion.c:PyType_CheckExact
Unexecuted instantiation: optimizer.c:PyType_CheckExact
Unexecuted instantiation: pathconfig.c:PyType_CheckExact
Unexecuted instantiation: pegen.c:PyType_CheckExact
Unexecuted instantiation: pegen_errors.c:PyType_CheckExact
Unexecuted instantiation: parser.c:PyType_CheckExact
Unexecuted instantiation: buffer.c:PyType_CheckExact
Unexecuted instantiation: lexer.c:PyType_CheckExact
Unexecuted instantiation: number.c:PyType_CheckExact
Unexecuted instantiation: state.c:PyType_CheckExact
Unexecuted instantiation: string.c:PyType_CheckExact
Unexecuted instantiation: readline_tokenizer.c:PyType_CheckExact
Unexecuted instantiation: string_tokenizer.c:PyType_CheckExact
Unexecuted instantiation: utf8_tokenizer.c:PyType_CheckExact
Unexecuted instantiation: getcompiler.c:PyType_CheckExact
Unexecuted instantiation: mystrtoul.c:PyType_CheckExact
Unexecuted instantiation: token.c:PyType_CheckExact
Unexecuted instantiation: action_helpers.c:PyType_CheckExact
Unexecuted instantiation: string_parser.c:PyType_CheckExact
775
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
776
84.9M
#  define PyType_CheckExact(op) PyType_CheckExact(_PyObject_CAST(op))
777
#endif
778
779
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
780
PyAPI_FUNC(PyObject *) PyType_GetModuleByDef(PyTypeObject *, PyModuleDef *);
781
#endif
782
783
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030e0000
784
PyAPI_FUNC(int) PyType_Freeze(PyTypeObject *type);
785
#endif
786
787
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= _Py_PACK_VERSION(3, 15)
788
PyAPI_FUNC(int) PyObject_CallFinalizerFromDealloc(PyObject *);
789
PyAPI_FUNC(PyObject *) PyType_GetModuleByToken(PyTypeObject *type,
790
                                               const void *token);
791
PyAPI_FUNC(void *) PyObject_GetTypeData_DuringGC(PyObject *obj,
792
                                                 PyTypeObject *cls);
793
PyAPI_FUNC(void *) PyType_GetModuleState_DuringGC(PyTypeObject *);
794
PyAPI_FUNC(int) PyType_GetBaseByToken_DuringGC(PyTypeObject *,
795
                                               void *, PyTypeObject **);
796
PyAPI_FUNC(PyObject *) PyType_GetModule_DuringGC(PyTypeObject *);
797
PyAPI_FUNC(PyObject *) PyType_GetModuleByToken_DuringGC(PyTypeObject *type,
798
                                                        const void *token);
799
#endif
800
801
#ifdef __cplusplus
802
}
803
#endif
804
#endif   // !Py_OBJECT_H