Coverage Report

Created: 2025-09-05 07:10

/src/cpython/Include/object.h
Line
Count
Source (jump to first uncovered line)
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
#if defined(Py_GIL_DISABLED)
76
#define PyObject_HEAD_INIT(type)    \
77
    {                               \
78
        0,                          \
79
        _Py_STATICALLY_ALLOCATED_FLAG, \
80
        { 0 },                      \
81
        0,                          \
82
        _Py_IMMORTAL_REFCNT_LOCAL,  \
83
        0,                          \
84
        (type),                     \
85
    },
86
#else
87
#define PyObject_HEAD_INIT(type)    \
88
255M
    {                               \
89
255M
        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
90
255M
        (type)                      \
91
255M
    },
92
#endif
93
94
#define PyVarObject_HEAD_INIT(type, size) \
95
255M
    {                                     \
96
255M
        PyObject_HEAD_INIT(type)          \
97
255M
        (size)                            \
98
255M
    },
99
100
/* PyObject_VAR_HEAD defines the initial segment of all variable-size
101
 * container objects.  These end with a declaration of an array with 1
102
 * element, but enough space is malloc'ed so that the array actually
103
 * has room for ob_size elements.  Note that ob_size is an element count,
104
 * not necessarily a byte count.
105
 */
106
#define PyObject_VAR_HEAD      PyVarObject ob_base;
107
#endif // !defined(_Py_OPAQUE_PYOBJECT)
108
109
#define Py_INVALID_SIZE (Py_ssize_t)-1
110
111
/* PyObjects are given a minimum alignment so that the least significant bits
112
 * of an object pointer become available for other purposes.
113
 * This must be an integer literal with the value (1 << _PyGC_PREV_SHIFT), number of bytes.
114
 */
115
#define _PyObject_MIN_ALIGNMENT 4
116
117
/* Nothing is actually declared to be a PyObject, but every pointer to
118
 * a Python object can be cast to a PyObject*.  This is inheritance built
119
 * by hand.  Similarly every pointer to a variable-size Python object can,
120
 * in addition, be cast to PyVarObject*.
121
 */
122
#ifdef _Py_OPAQUE_PYOBJECT
123
  /* PyObject is opaque */
124
#elif !defined(Py_GIL_DISABLED)
125
struct _object {
126
    _Py_ANONYMOUS union {
127
#if SIZEOF_VOID_P > 4
128
        PY_INT64_T ob_refcnt_full; /* This field is needed for efficient initialization with Clang on ARM */
129
        struct {
130
#  if PY_BIG_ENDIAN
131
            uint16_t ob_flags;
132
            uint16_t ob_overflow;
133
            uint32_t ob_refcnt;
134
#  else
135
            uint32_t ob_refcnt;
136
            uint16_t ob_overflow;
137
            uint16_t ob_flags;
138
#  endif
139
        };
140
#else
141
        Py_ssize_t ob_refcnt;
142
#endif
143
        _Py_ALIGNED_DEF(_PyObject_MIN_ALIGNMENT, char) _aligner;
144
    };
145
146
    PyTypeObject *ob_type;
147
};
148
#else
149
// Objects that are not owned by any thread use a thread id (tid) of zero.
150
// This includes both immortal objects and objects whose reference count
151
// fields have been merged.
152
#define _Py_UNOWNED_TID             0
153
154
struct _object {
155
    // ob_tid stores the thread id (or zero). It is also used by the GC and the
156
    // trashcan mechanism as a linked list pointer and by the GC to store the
157
    // computed "gc_refs" refcount.
158
    _Py_ALIGNED_DEF(_PyObject_MIN_ALIGNMENT, uintptr_t) ob_tid;
159
    uint16_t ob_flags;
160
    PyMutex ob_mutex;           // per-object lock
161
    uint8_t ob_gc_bits;         // gc-related state
162
    uint32_t ob_ref_local;      // local reference count
163
    Py_ssize_t ob_ref_shared;   // shared (atomic) reference count
164
    PyTypeObject *ob_type;
165
};
166
#endif // !defined(_Py_OPAQUE_PYOBJECT)
167
168
/* Cast argument to PyObject* type. */
169
149G
#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
170
171
#ifndef _Py_OPAQUE_PYOBJECT
172
struct PyVarObject {
173
    PyObject ob_base;
174
    Py_ssize_t ob_size; /* Number of items in variable part */
175
};
176
#endif
177
typedef struct PyVarObject PyVarObject;
178
179
/* Cast argument to PyVarObject* type. */
180
7.23G
#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
181
182
183
// Test if the 'x' object is the 'y' object, the same as "x is y" in Python.
184
PyAPI_FUNC(int) Py_Is(PyObject *x, PyObject *y);
185
212M
#define Py_Is(x, y) ((x) == (y))
186
187
#if defined(Py_GIL_DISABLED) && !defined(Py_LIMITED_API)
188
PyAPI_FUNC(uintptr_t) _Py_GetThreadLocal_Addr(void);
189
190
static inline uintptr_t
191
_Py_ThreadId(void)
192
{
193
    uintptr_t tid;
194
#if defined(_MSC_VER) && defined(_M_X64)
195
    tid = __readgsqword(48);
196
#elif defined(_MSC_VER) && defined(_M_IX86)
197
    tid = __readfsdword(24);
198
#elif defined(_MSC_VER) && defined(_M_ARM64)
199
    tid = __getReg(18);
200
#elif defined(__MINGW32__) && defined(_M_X64)
201
    tid = __readgsqword(48);
202
#elif defined(__MINGW32__) && defined(_M_IX86)
203
    tid = __readfsdword(24);
204
#elif defined(__MINGW32__) && defined(_M_ARM64)
205
    tid = __getReg(18);
206
#elif defined(__i386__)
207
    __asm__("movl %%gs:0, %0" : "=r" (tid));  // 32-bit always uses GS
208
#elif defined(__MACH__) && defined(__x86_64__)
209
    __asm__("movq %%gs:0, %0" : "=r" (tid));  // x86_64 macOSX uses GS
210
#elif defined(__x86_64__)
211
   __asm__("movq %%fs:0, %0" : "=r" (tid));  // x86_64 Linux, BSD uses FS
212
#elif defined(__arm__) && __ARM_ARCH >= 7
213
    __asm__ ("mrc p15, 0, %0, c13, c0, 3\nbic %0, %0, #3" : "=r" (tid));
214
#elif defined(__aarch64__) && defined(__APPLE__)
215
    __asm__ ("mrs %0, tpidrro_el0" : "=r" (tid));
216
#elif defined(__aarch64__)
217
    __asm__ ("mrs %0, tpidr_el0" : "=r" (tid));
218
#elif defined(__powerpc64__)
219
    #if defined(__clang__) && _Py__has_builtin(__builtin_thread_pointer)
220
    tid = (uintptr_t)__builtin_thread_pointer();
221
    #else
222
    // r13 is reserved for use as system thread ID by the Power 64-bit ABI.
223
    register uintptr_t tp __asm__ ("r13");
224
    __asm__("" : "=r" (tp));
225
    tid = tp;
226
    #endif
227
#elif defined(__powerpc__)
228
    #if defined(__clang__) && _Py__has_builtin(__builtin_thread_pointer)
229
    tid = (uintptr_t)__builtin_thread_pointer();
230
    #else
231
    // r2 is reserved for use as system thread ID by the Power 32-bit ABI.
232
    register uintptr_t tp __asm__ ("r2");
233
    __asm__ ("" : "=r" (tp));
234
    tid = tp;
235
    #endif
236
#elif defined(__s390__) && defined(__GNUC__)
237
    // Both GCC and Clang have supported __builtin_thread_pointer
238
    // for s390 from long time ago.
239
    tid = (uintptr_t)__builtin_thread_pointer();
240
#elif defined(__riscv)
241
    #if defined(__clang__) && _Py__has_builtin(__builtin_thread_pointer)
242
    tid = (uintptr_t)__builtin_thread_pointer();
243
    #else
244
    // tp is Thread Pointer provided by the RISC-V ABI.
245
    __asm__ ("mv %0, tp" : "=r" (tid));
246
    #endif
247
#else
248
    // Fallback to a portable implementation if we do not have a faster
249
    // platform-specific implementation.
250
    tid = _Py_GetThreadLocal_Addr();
251
#endif
252
  return tid;
253
}
254
255
static inline Py_ALWAYS_INLINE int
256
_Py_IsOwnedByCurrentThread(PyObject *ob)
257
{
258
#ifdef _Py_THREAD_SANITIZER
259
    return _Py_atomic_load_uintptr_relaxed(&ob->ob_tid) == _Py_ThreadId();
260
#else
261
    return ob->ob_tid == _Py_ThreadId();
262
#endif
263
}
264
#endif
265
266
// Py_TYPE() implementation for the stable ABI
267
PyAPI_FUNC(PyTypeObject*) Py_TYPE(PyObject *ob);
268
269
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030e0000
270
    // Stable ABI implements Py_TYPE() as a function call
271
    // on limited C API version 3.14 and newer.
272
#else
273
    static inline PyTypeObject* _Py_TYPE(PyObject *ob)
274
35.7G
    {
275
35.7G
        return ob->ob_type;
276
35.7G
    }
bytesobject.c:_Py_TYPE
Line
Count
Source
274
26.7M
    {
275
26.7M
        return ob->ob_type;
276
26.7M
    }
call.c:_Py_TYPE
Line
Count
Source
274
603M
    {
275
603M
        return ob->ob_type;
276
603M
    }
exceptions.c:_Py_TYPE
Line
Count
Source
274
70.1M
    {
275
70.1M
        return ob->ob_type;
276
70.1M
    }
genericaliasobject.c:_Py_TYPE
Line
Count
Source
274
906
    {
275
906
        return ob->ob_type;
276
906
    }
floatobject.c:_Py_TYPE
Line
Count
Source
274
15.5M
    {
275
15.5M
        return ob->ob_type;
276
15.5M
    }
listobject.c:_Py_TYPE
Line
Count
Source
274
646M
    {
275
646M
        return ob->ob_type;
276
646M
    }
longobject.c:_Py_TYPE
Line
Count
Source
274
1.70G
    {
275
1.70G
        return ob->ob_type;
276
1.70G
    }
dictobject.c:_Py_TYPE
Line
Count
Source
274
3.57G
    {
275
3.57G
        return ob->ob_type;
276
3.57G
    }
memoryobject.c:_Py_TYPE
Line
Count
Source
274
2.29k
    {
275
2.29k
        return ob->ob_type;
276
2.29k
    }
moduleobject.c:_Py_TYPE
Line
Count
Source
274
20.1M
    {
275
20.1M
        return ob->ob_type;
276
20.1M
    }
object.c:_Py_TYPE
Line
Count
Source
274
6.76G
    {
275
6.76G
        return ob->ob_type;
276
6.76G
    }
Unexecuted instantiation: obmalloc.c:_Py_TYPE
Unexecuted instantiation: picklebufobject.c:_Py_TYPE
rangeobject.c:_Py_TYPE
Line
Count
Source
274
1.55k
    {
275
1.55k
        return ob->ob_type;
276
1.55k
    }
setobject.c:_Py_TYPE
Line
Count
Source
274
114M
    {
275
114M
        return ob->ob_type;
276
114M
    }
sliceobject.c:_Py_TYPE
Line
Count
Source
274
1.31k
    {
275
1.31k
        return ob->ob_type;
276
1.31k
    }
structseq.c:_Py_TYPE
Line
Count
Source
274
9.26k
    {
275
9.26k
        return ob->ob_type;
276
9.26k
    }
templateobject.c:_Py_TYPE
Line
Count
Source
274
4
    {
275
4
        return ob->ob_type;
276
4
    }
tupleobject.c:_Py_TYPE
Line
Count
Source
274
634M
    {
275
634M
        return ob->ob_type;
276
634M
    }
typeobject.c:_Py_TYPE
Line
Count
Source
274
1.01G
    {
275
1.01G
        return ob->ob_type;
276
1.01G
    }
Unexecuted instantiation: typevarobject.c:_Py_TYPE
unicodeobject.c:_Py_TYPE
Line
Count
Source
274
2.45G
    {
275
2.45G
        return ob->ob_type;
276
2.45G
    }
Unexecuted instantiation: unicodectype.c:_Py_TYPE
unionobject.c:_Py_TYPE
Line
Count
Source
274
962
    {
275
962
        return ob->ob_type;
276
962
    }
weakrefobject.c:_Py_TYPE
Line
Count
Source
274
107M
    {
275
107M
        return ob->ob_type;
276
107M
    }
_warnings.c:_Py_TYPE
Line
Count
Source
274
92.2k
    {
275
92.2k
        return ob->ob_type;
276
92.2k
    }
bltinmodule.c:_Py_TYPE
Line
Count
Source
274
171M
    {
275
171M
        return ob->ob_type;
276
171M
    }
ceval.c:_Py_TYPE
Line
Count
Source
274
11.9G
    {
275
11.9G
        return ob->ob_type;
276
11.9G
    }
codecs.c:_Py_TYPE
Line
Count
Source
274
3.14M
    {
275
3.14M
        return ob->ob_type;
276
3.14M
    }
codegen.c:_Py_TYPE
Line
Count
Source
274
1.44k
    {
275
1.44k
        return ob->ob_type;
276
1.44k
    }
compile.c:_Py_TYPE
Line
Count
Source
274
169k
    {
275
169k
        return ob->ob_type;
276
169k
    }
context.c:_Py_TYPE
Line
Count
Source
274
16.6k
    {
275
16.6k
        return ob->ob_type;
276
16.6k
    }
errors.c:_Py_TYPE
Line
Count
Source
274
340M
    {
275
340M
        return ob->ob_type;
276
340M
    }
flowgraph.c:_Py_TYPE
Line
Count
Source
274
69.1k
    {
275
69.1k
        return ob->ob_type;
276
69.1k
    }
Unexecuted instantiation: frame.c:_Py_TYPE
Unexecuted instantiation: future.c:_Py_TYPE
gc.c:_Py_TYPE
Line
Count
Source
274
2.16G
    {
275
2.16G
        return ob->ob_type;
276
2.16G
    }
Unexecuted instantiation: gc_gil.c:_Py_TYPE
getargs.c:_Py_TYPE
Line
Count
Source
274
13.9M
    {
275
13.9M
        return ob->ob_type;
276
13.9M
    }
Unexecuted instantiation: ceval_gil.c:_Py_TYPE
Unexecuted instantiation: hamt.c:_Py_TYPE
Unexecuted instantiation: hashtable.c:_Py_TYPE
import.c:_Py_TYPE
Line
Count
Source
274
32.5k
    {
275
32.5k
        return ob->ob_type;
276
32.5k
    }
importdl.c:_Py_TYPE
Line
Count
Source
274
912
    {
275
912
        return ob->ob_type;
276
912
    }
initconfig.c:_Py_TYPE
Line
Count
Source
274
448
    {
275
448
        return ob->ob_type;
276
448
    }
Unexecuted instantiation: instrumentation.c:_Py_TYPE
Unexecuted instantiation: instruction_sequence.c:_Py_TYPE
intrinsics.c:_Py_TYPE
Line
Count
Source
274
28.2k
    {
275
28.2k
        return ob->ob_type;
276
28.2k
    }
Unexecuted instantiation: legacy_tracing.c:_Py_TYPE
Unexecuted instantiation: lock.c:_Py_TYPE
marshal.c:_Py_TYPE
Line
Count
Source
274
499k
    {
275
499k
        return ob->ob_type;
276
499k
    }
modsupport.c:_Py_TYPE
Line
Count
Source
274
201k
    {
275
201k
        return ob->ob_type;
276
201k
    }
Unexecuted instantiation: mysnprintf.c:_Py_TYPE
Unexecuted instantiation: parking_lot.c:_Py_TYPE
Unexecuted instantiation: preconfig.c:_Py_TYPE
Unexecuted instantiation: pyarena.c:_Py_TYPE
Unexecuted instantiation: pyctype.c:_Py_TYPE
Unexecuted instantiation: pyhash.c:_Py_TYPE
pylifecycle.c:_Py_TYPE
Line
Count
Source
274
16
    {
275
16
        return ob->ob_type;
276
16
    }
Unexecuted instantiation: pymath.c:_Py_TYPE
Unexecuted instantiation: pystate.c:_Py_TYPE
pythonrun.c:_Py_TYPE
Line
Count
Source
274
44.8k
    {
275
44.8k
        return ob->ob_type;
276
44.8k
    }
Unexecuted instantiation: pytime.c:_Py_TYPE
Unexecuted instantiation: qsbr.c:_Py_TYPE
Unexecuted instantiation: bootstrap_hash.c:_Py_TYPE
specialize.c:_Py_TYPE
Line
Count
Source
274
26.7M
    {
275
26.7M
        return ob->ob_type;
276
26.7M
    }
symtable.c:_Py_TYPE
Line
Count
Source
274
124k
    {
275
124k
        return ob->ob_type;
276
124k
    }
sysmodule.c:_Py_TYPE
Line
Count
Source
274
1.33k
    {
275
1.33k
        return ob->ob_type;
276
1.33k
    }
Unexecuted instantiation: thread.c:_Py_TYPE
traceback.c:_Py_TYPE
Line
Count
Source
274
31.4M
    {
275
31.4M
        return ob->ob_type;
276
31.4M
    }
Unexecuted instantiation: tracemalloc.c:_Py_TYPE
Unexecuted instantiation: getopt.c:_Py_TYPE
Unexecuted instantiation: pystrcmp.c:_Py_TYPE
Unexecuted instantiation: pystrtod.c:_Py_TYPE
Unexecuted instantiation: pystrhex.c:_Py_TYPE
Unexecuted instantiation: dtoa.c:_Py_TYPE
formatter_unicode.c:_Py_TYPE
Line
Count
Source
274
15.5M
    {
275
15.5M
        return ob->ob_type;
276
15.5M
    }
Unexecuted instantiation: fileutils.c:_Py_TYPE
Unexecuted instantiation: suggestions.c:_Py_TYPE
Unexecuted instantiation: perf_trampoline.c:_Py_TYPE
Unexecuted instantiation: perf_jit_trampoline.c:_Py_TYPE
Unexecuted instantiation: remote_debugging.c:_Py_TYPE
Unexecuted instantiation: dynload_shlib.c:_Py_TYPE
Unexecuted instantiation: config.c:_Py_TYPE
Unexecuted instantiation: gcmodule.c:_Py_TYPE
Unexecuted instantiation: _asynciomodule.c:_Py_TYPE
Unexecuted instantiation: atexitmodule.c:_Py_TYPE
Unexecuted instantiation: faulthandler.c:_Py_TYPE
posixmodule.c:_Py_TYPE
Line
Count
Source
274
50.7k
    {
275
50.7k
        return ob->ob_type;
276
50.7k
    }
Unexecuted instantiation: signalmodule.c:_Py_TYPE
Unexecuted instantiation: _tracemalloc.c:_Py_TYPE
Unexecuted instantiation: _suggestions.c:_Py_TYPE
_datetimemodule.c:_Py_TYPE
Line
Count
Source
274
12
    {
275
12
        return ob->ob_type;
276
12
    }
_codecsmodule.c:_Py_TYPE
Line
Count
Source
274
883k
    {
275
883k
        return ob->ob_type;
276
883k
    }
_collectionsmodule.c:_Py_TYPE
Line
Count
Source
274
401k
    {
275
401k
        return ob->ob_type;
276
401k
    }
Unexecuted instantiation: errnomodule.c:_Py_TYPE
_iomodule.c:_Py_TYPE
Line
Count
Source
274
3.05k
    {
275
3.05k
        return ob->ob_type;
276
3.05k
    }
iobase.c:_Py_TYPE
Line
Count
Source
274
15.0k
    {
275
15.0k
        return ob->ob_type;
276
15.0k
    }
fileio.c:_Py_TYPE
Line
Count
Source
274
35.3k
    {
275
35.3k
        return ob->ob_type;
276
35.3k
    }
bytesio.c:_Py_TYPE
Line
Count
Source
274
24.5k
    {
275
24.5k
        return ob->ob_type;
276
24.5k
    }
bufferedio.c:_Py_TYPE
Line
Count
Source
274
37.7k
    {
275
37.7k
        return ob->ob_type;
276
37.7k
    }
textio.c:_Py_TYPE
Line
Count
Source
274
117k
    {
275
117k
        return ob->ob_type;
276
117k
    }
stringio.c:_Py_TYPE
Line
Count
Source
274
19.6M
    {
275
19.6M
        return ob->ob_type;
276
19.6M
    }
itertoolsmodule.c:_Py_TYPE
Line
Count
Source
274
8.64k
    {
275
8.64k
        return ob->ob_type;
276
8.64k
    }
sre.c:_Py_TYPE
Line
Count
Source
274
285M
    {
275
285M
        return ob->ob_type;
276
285M
    }
Unexecuted instantiation: _sysconfig.c:_Py_TYPE
_threadmodule.c:_Py_TYPE
Line
Count
Source
274
5.08k
    {
275
5.08k
        return ob->ob_type;
276
5.08k
    }
Unexecuted instantiation: timemodule.c:_Py_TYPE
Unexecuted instantiation: _typesmodule.c:_Py_TYPE
Unexecuted instantiation: _typingmodule.c:_Py_TYPE
_weakref.c:_Py_TYPE
Line
Count
Source
274
8.19k
    {
275
8.19k
        return ob->ob_type;
276
8.19k
    }
_abc.c:_Py_TYPE
Line
Count
Source
274
663k
    {
275
663k
        return ob->ob_type;
276
663k
    }
_functoolsmodule.c:_Py_TYPE
Line
Count
Source
274
132k
    {
275
132k
        return ob->ob_type;
276
132k
    }
Unexecuted instantiation: _localemodule.c:_Py_TYPE
Unexecuted instantiation: _opcode.c:_Py_TYPE
_operator.c:_Py_TYPE
Line
Count
Source
274
1.65M
    {
275
1.65M
        return ob->ob_type;
276
1.65M
    }
_stat.c:_Py_TYPE
Line
Count
Source
274
16
    {
275
16
        return ob->ob_type;
276
16
    }
Unexecuted instantiation: symtablemodule.c:_Py_TYPE
Unexecuted instantiation: pwdmodule.c:_Py_TYPE
getpath.c:_Py_TYPE
Line
Count
Source
274
448
    {
275
448
        return ob->ob_type;
276
448
    }
Unexecuted instantiation: frozen.c:_Py_TYPE
Unexecuted instantiation: getbuildinfo.c:_Py_TYPE
Unexecuted instantiation: peg_api.c:_Py_TYPE
Unexecuted instantiation: file_tokenizer.c:_Py_TYPE
Unexecuted instantiation: helpers.c:_Py_TYPE
Unexecuted instantiation: myreadline.c:_Py_TYPE
abstract.c:_Py_TYPE
Line
Count
Source
274
1.92G
    {
275
1.92G
        return ob->ob_type;
276
1.92G
    }
Unexecuted instantiation: boolobject.c:_Py_TYPE
bytes_methods.c:_Py_TYPE
Line
Count
Source
274
2.21M
    {
275
2.21M
        return ob->ob_type;
276
2.21M
    }
bytearrayobject.c:_Py_TYPE
Line
Count
Source
274
3.16M
    {
275
3.16M
        return ob->ob_type;
276
3.16M
    }
capsule.c:_Py_TYPE
Line
Count
Source
274
16.3k
    {
275
16.3k
        return ob->ob_type;
276
16.3k
    }
cellobject.c:_Py_TYPE
Line
Count
Source
274
3.36k
    {
275
3.36k
        return ob->ob_type;
276
3.36k
    }
classobject.c:_Py_TYPE
Line
Count
Source
274
18.7M
    {
275
18.7M
        return ob->ob_type;
276
18.7M
    }
codeobject.c:_Py_TYPE
Line
Count
Source
274
1.69M
    {
275
1.69M
        return ob->ob_type;
276
1.69M
    }
complexobject.c:_Py_TYPE
Line
Count
Source
274
10.5k
    {
275
10.5k
        return ob->ob_type;
276
10.5k
    }
descrobject.c:_Py_TYPE
Line
Count
Source
274
810M
    {
275
810M
        return ob->ob_type;
276
810M
    }
enumobject.c:_Py_TYPE
Line
Count
Source
274
136M
    {
275
136M
        return ob->ob_type;
276
136M
    }
genobject.c:_Py_TYPE
Line
Count
Source
274
50.3M
    {
275
50.3M
        return ob->ob_type;
276
50.3M
    }
fileobject.c:_Py_TYPE
Line
Count
Source
274
1.00k
    {
275
1.00k
        return ob->ob_type;
276
1.00k
    }
frameobject.c:_Py_TYPE
Line
Count
Source
274
32
    {
275
32
        return ob->ob_type;
276
32
    }
funcobject.c:_Py_TYPE
Line
Count
Source
274
28.5k
    {
275
28.5k
        return ob->ob_type;
276
28.5k
    }
Unexecuted instantiation: interpolationobject.c:_Py_TYPE
iterobject.c:_Py_TYPE
Line
Count
Source
274
3.07M
    {
275
3.07M
        return ob->ob_type;
276
3.07M
    }
odictobject.c:_Py_TYPE
Line
Count
Source
274
8
    {
275
8
        return ob->ob_type;
276
8
    }
methodobject.c:_Py_TYPE
Line
Count
Source
274
3.99k
    {
275
3.99k
        return ob->ob_type;
276
3.99k
    }
namespaceobject.c:_Py_TYPE
Line
Count
Source
274
222
    {
275
222
        return ob->ob_type;
276
222
    }
Unexecuted instantiation: _contextvars.c:_Py_TYPE
Python-ast.c:_Py_TYPE
Line
Count
Source
274
1.15M
    {
275
1.15M
        return ob->ob_type;
276
1.15M
    }
Unexecuted instantiation: Python-tokenize.c:_Py_TYPE
Unexecuted instantiation: asdl.c:_Py_TYPE
Unexecuted instantiation: assemble.c:_Py_TYPE
ast.c:_Py_TYPE
Line
Count
Source
274
11.5k
    {
275
11.5k
        return ob->ob_type;
276
11.5k
    }
ast_preprocess.c:_Py_TYPE
Line
Count
Source
274
495
    {
275
495
        return ob->ob_type;
276
495
    }
Unexecuted instantiation: ast_unparse.c:_Py_TYPE
Unexecuted instantiation: critical_section.c:_Py_TYPE
crossinterp.c:_Py_TYPE
Line
Count
Source
274
16
    {
275
16
        return ob->ob_type;
276
16
    }
Unexecuted instantiation: getcopyright.c:_Py_TYPE
Unexecuted instantiation: getplatform.c:_Py_TYPE
Unexecuted instantiation: getversion.c:_Py_TYPE
Unexecuted instantiation: optimizer.c:_Py_TYPE
Unexecuted instantiation: pathconfig.c:_Py_TYPE
Unexecuted instantiation: structmember.c:_Py_TYPE
pegen.c:_Py_TYPE
Line
Count
Source
274
68.8k
    {
275
68.8k
        return ob->ob_type;
276
68.8k
    }
Unexecuted instantiation: pegen_errors.c:_Py_TYPE
Unexecuted instantiation: parser.c:_Py_TYPE
Unexecuted instantiation: buffer.c:_Py_TYPE
Unexecuted instantiation: lexer.c:_Py_TYPE
Unexecuted instantiation: state.c:_Py_TYPE
Unexecuted instantiation: readline_tokenizer.c:_Py_TYPE
Unexecuted instantiation: string_tokenizer.c:_Py_TYPE
Unexecuted instantiation: utf8_tokenizer.c:_Py_TYPE
Unexecuted instantiation: getcompiler.c:_Py_TYPE
Unexecuted instantiation: mystrtoul.c:_Py_TYPE
Unexecuted instantiation: token.c:_Py_TYPE
action_helpers.c:_Py_TYPE
Line
Count
Source
274
164k
    {
275
164k
        return ob->ob_type;
276
164k
    }
Unexecuted instantiation: string_parser.c:_Py_TYPE
277
    #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
278
30.0G
    #   define Py_TYPE(ob) _Py_TYPE(_PyObject_CAST(ob))
279
    #else
280
    #   define Py_TYPE(ob) _Py_TYPE(ob)
281
    #endif
282
#endif
283
284
PyAPI_DATA(PyTypeObject) PyLong_Type;
285
PyAPI_DATA(PyTypeObject) PyBool_Type;
286
287
#ifndef _Py_OPAQUE_PYOBJECT
288
// bpo-39573: The Py_SET_SIZE() function must be used to set an object size.
289
5.96G
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
5.96G
    assert(Py_TYPE(ob) != &PyLong_Type);
291
5.96G
    assert(Py_TYPE(ob) != &PyBool_Type);
292
5.96G
    return  _PyVarObject_CAST(ob)->ob_size;
293
5.96G
}
bytesobject.c:Py_SIZE
Line
Count
Source
289
30.1M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
30.1M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
30.1M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
30.1M
    return  _PyVarObject_CAST(ob)->ob_size;
293
30.1M
}
call.c:Py_SIZE
Line
Count
Source
289
72.3M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
72.3M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
72.3M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
72.3M
    return  _PyVarObject_CAST(ob)->ob_size;
293
72.3M
}
exceptions.c:Py_SIZE
Line
Count
Source
289
10.1M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
10.1M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
10.1M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
10.1M
    return  _PyVarObject_CAST(ob)->ob_size;
293
10.1M
}
genericaliasobject.c:Py_SIZE
Line
Count
Source
289
4
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
4
    assert(Py_TYPE(ob) != &PyLong_Type);
291
4
    assert(Py_TYPE(ob) != &PyBool_Type);
292
4
    return  _PyVarObject_CAST(ob)->ob_size;
293
4
}
floatobject.c:Py_SIZE
Line
Count
Source
289
522k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
522k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
522k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
522k
    return  _PyVarObject_CAST(ob)->ob_size;
293
522k
}
listobject.c:Py_SIZE
Line
Count
Source
289
1.79G
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.79G
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.79G
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.79G
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.79G
}
longobject.c:Py_SIZE
Line
Count
Source
289
6.93k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
6.93k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
6.93k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
6.93k
    return  _PyVarObject_CAST(ob)->ob_size;
293
6.93k
}
dictobject.c:Py_SIZE
Line
Count
Source
289
84.8k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
84.8k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
84.8k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
84.8k
    return  _PyVarObject_CAST(ob)->ob_size;
293
84.8k
}
memoryobject.c:Py_SIZE
Line
Count
Source
289
767
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
767
    assert(Py_TYPE(ob) != &PyLong_Type);
291
767
    assert(Py_TYPE(ob) != &PyBool_Type);
292
767
    return  _PyVarObject_CAST(ob)->ob_size;
293
767
}
moduleobject.c:Py_SIZE
Line
Count
Source
289
953
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
953
    assert(Py_TYPE(ob) != &PyLong_Type);
291
953
    assert(Py_TYPE(ob) != &PyBool_Type);
292
953
    return  _PyVarObject_CAST(ob)->ob_size;
293
953
}
object.c:Py_SIZE
Line
Count
Source
289
7.39M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
7.39M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
7.39M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
7.39M
    return  _PyVarObject_CAST(ob)->ob_size;
293
7.39M
}
Unexecuted instantiation: obmalloc.c:Py_SIZE
Unexecuted instantiation: picklebufobject.c:Py_SIZE
Unexecuted instantiation: rangeobject.c:Py_SIZE
Unexecuted instantiation: setobject.c:Py_SIZE
Unexecuted instantiation: sliceobject.c:Py_SIZE
structseq.c:Py_SIZE
Line
Count
Source
289
4.56k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
4.56k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
4.56k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
4.56k
    return  _PyVarObject_CAST(ob)->ob_size;
293
4.56k
}
Unexecuted instantiation: templateobject.c:Py_SIZE
tupleobject.c:Py_SIZE
Line
Count
Source
289
1.41G
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.41G
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.41G
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.41G
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.41G
}
typeobject.c:Py_SIZE
Line
Count
Source
289
576M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
576M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
576M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
576M
    return  _PyVarObject_CAST(ob)->ob_size;
293
576M
}
Unexecuted instantiation: typevarobject.c:Py_SIZE
unicodeobject.c:Py_SIZE
Line
Count
Source
289
71.7M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
71.7M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
71.7M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
71.7M
    return  _PyVarObject_CAST(ob)->ob_size;
293
71.7M
}
Unexecuted instantiation: unicodectype.c:Py_SIZE
unionobject.c:Py_SIZE
Line
Count
Source
289
463
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
463
    assert(Py_TYPE(ob) != &PyLong_Type);
291
463
    assert(Py_TYPE(ob) != &PyBool_Type);
292
463
    return  _PyVarObject_CAST(ob)->ob_size;
293
463
}
Unexecuted instantiation: weakrefobject.c:Py_SIZE
_warnings.c:Py_SIZE
Line
Count
Source
289
33.3k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
33.3k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
33.3k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
33.3k
    return  _PyVarObject_CAST(ob)->ob_size;
293
33.3k
}
bltinmodule.c:Py_SIZE
Line
Count
Source
289
2.38M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
2.38M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
2.38M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
2.38M
    return  _PyVarObject_CAST(ob)->ob_size;
293
2.38M
}
ceval.c:Py_SIZE
Line
Count
Source
289
1.66G
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.66G
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.66G
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.66G
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.66G
}
codecs.c:Py_SIZE
Line
Count
Source
289
931k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
931k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
931k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
931k
    return  _PyVarObject_CAST(ob)->ob_size;
293
931k
}
codegen.c:Py_SIZE
Line
Count
Source
289
712
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
712
    assert(Py_TYPE(ob) != &PyLong_Type);
291
712
    assert(Py_TYPE(ob) != &PyBool_Type);
292
712
    return  _PyVarObject_CAST(ob)->ob_size;
293
712
}
compile.c:Py_SIZE
Line
Count
Source
289
39.9k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
39.9k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
39.9k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
39.9k
    return  _PyVarObject_CAST(ob)->ob_size;
293
39.9k
}
Unexecuted instantiation: context.c:Py_SIZE
Unexecuted instantiation: errors.c:Py_SIZE
flowgraph.c:Py_SIZE
Line
Count
Source
289
113k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
113k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
113k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
113k
    return  _PyVarObject_CAST(ob)->ob_size;
293
113k
}
Unexecuted instantiation: frame.c:Py_SIZE
Unexecuted instantiation: future.c:Py_SIZE
gc.c:Py_SIZE
Line
Count
Source
289
240k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
240k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
240k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
240k
    return  _PyVarObject_CAST(ob)->ob_size;
293
240k
}
Unexecuted instantiation: gc_gil.c:Py_SIZE
getargs.c:Py_SIZE
Line
Count
Source
289
3.05M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
3.05M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
3.05M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
3.05M
    return  _PyVarObject_CAST(ob)->ob_size;
293
3.05M
}
Unexecuted instantiation: ceval_gil.c:Py_SIZE
Unexecuted instantiation: hamt.c:Py_SIZE
Unexecuted instantiation: hashtable.c:Py_SIZE
import.c:Py_SIZE
Line
Count
Source
289
112
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
112
    assert(Py_TYPE(ob) != &PyLong_Type);
291
112
    assert(Py_TYPE(ob) != &PyBool_Type);
292
112
    return  _PyVarObject_CAST(ob)->ob_size;
293
112
}
Unexecuted instantiation: importdl.c:Py_SIZE
initconfig.c:Py_SIZE
Line
Count
Source
289
64
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
64
    assert(Py_TYPE(ob) != &PyLong_Type);
291
64
    assert(Py_TYPE(ob) != &PyBool_Type);
292
64
    return  _PyVarObject_CAST(ob)->ob_size;
293
64
}
Unexecuted instantiation: instrumentation.c:Py_SIZE
Unexecuted instantiation: instruction_sequence.c:Py_SIZE
intrinsics.c:Py_SIZE
Line
Count
Source
289
11.3M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
11.3M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
11.3M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
11.3M
    return  _PyVarObject_CAST(ob)->ob_size;
293
11.3M
}
Unexecuted instantiation: legacy_tracing.c:Py_SIZE
Unexecuted instantiation: lock.c:Py_SIZE
marshal.c:Py_SIZE
Line
Count
Source
289
318k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
318k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
318k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
318k
    return  _PyVarObject_CAST(ob)->ob_size;
293
318k
}
Unexecuted instantiation: modsupport.c:Py_SIZE
Unexecuted instantiation: mysnprintf.c:Py_SIZE
Unexecuted instantiation: parking_lot.c:Py_SIZE
Unexecuted instantiation: preconfig.c:Py_SIZE
Unexecuted instantiation: pyarena.c:Py_SIZE
Unexecuted instantiation: pyctype.c:Py_SIZE
Unexecuted instantiation: pyhash.c:Py_SIZE
Unexecuted instantiation: pylifecycle.c:Py_SIZE
Unexecuted instantiation: pymath.c:Py_SIZE
Unexecuted instantiation: pystate.c:Py_SIZE
pythonrun.c:Py_SIZE
Line
Count
Source
289
22.3k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
22.3k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
22.3k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
22.3k
    return  _PyVarObject_CAST(ob)->ob_size;
293
22.3k
}
Unexecuted instantiation: pytime.c:Py_SIZE
Unexecuted instantiation: qsbr.c:Py_SIZE
Unexecuted instantiation: bootstrap_hash.c:Py_SIZE
specialize.c:Py_SIZE
Line
Count
Source
289
11.6k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
11.6k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
11.6k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
11.6k
    return  _PyVarObject_CAST(ob)->ob_size;
293
11.6k
}
symtable.c:Py_SIZE
Line
Count
Source
289
46.7k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
46.7k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
46.7k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
46.7k
    return  _PyVarObject_CAST(ob)->ob_size;
293
46.7k
}
Unexecuted instantiation: sysmodule.c:Py_SIZE
Unexecuted instantiation: thread.c:Py_SIZE
Unexecuted instantiation: traceback.c:Py_SIZE
Unexecuted instantiation: tracemalloc.c:Py_SIZE
Unexecuted instantiation: getopt.c:Py_SIZE
Unexecuted instantiation: pystrcmp.c:Py_SIZE
Unexecuted instantiation: pystrtod.c:Py_SIZE
Unexecuted instantiation: pystrhex.c:Py_SIZE
Unexecuted instantiation: dtoa.c:Py_SIZE
Unexecuted instantiation: formatter_unicode.c:Py_SIZE
Unexecuted instantiation: fileutils.c:Py_SIZE
Unexecuted instantiation: suggestions.c:Py_SIZE
Unexecuted instantiation: perf_trampoline.c:Py_SIZE
Unexecuted instantiation: perf_jit_trampoline.c:Py_SIZE
Unexecuted instantiation: remote_debugging.c:Py_SIZE
Unexecuted instantiation: dynload_shlib.c:Py_SIZE
Unexecuted instantiation: config.c:Py_SIZE
Unexecuted instantiation: gcmodule.c:Py_SIZE
Unexecuted instantiation: _asynciomodule.c:Py_SIZE
Unexecuted instantiation: atexitmodule.c:Py_SIZE
Unexecuted instantiation: faulthandler.c:Py_SIZE
posixmodule.c:Py_SIZE
Line
Count
Source
289
5.71k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
5.71k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
5.71k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
5.71k
    return  _PyVarObject_CAST(ob)->ob_size;
293
5.71k
}
Unexecuted instantiation: signalmodule.c:Py_SIZE
Unexecuted instantiation: _tracemalloc.c:Py_SIZE
Unexecuted instantiation: _suggestions.c:Py_SIZE
Unexecuted instantiation: _datetimemodule.c:Py_SIZE
Unexecuted instantiation: _codecsmodule.c:Py_SIZE
_collectionsmodule.c:Py_SIZE
Line
Count
Source
289
143M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
143M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
143M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
143M
    return  _PyVarObject_CAST(ob)->ob_size;
293
143M
}
Unexecuted instantiation: errnomodule.c:Py_SIZE
Unexecuted instantiation: _iomodule.c:Py_SIZE
Unexecuted instantiation: iobase.c:Py_SIZE
fileio.c:Py_SIZE
Line
Count
Source
289
2.28k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
2.28k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
2.28k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
2.28k
    return  _PyVarObject_CAST(ob)->ob_size;
293
2.28k
}
bytesio.c:Py_SIZE
Line
Count
Source
289
28.5k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
28.5k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
28.5k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
28.5k
    return  _PyVarObject_CAST(ob)->ob_size;
293
28.5k
}
bufferedio.c:Py_SIZE
Line
Count
Source
289
1.05k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.05k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.05k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.05k
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.05k
}
textio.c:Py_SIZE
Line
Count
Source
289
15.9k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
15.9k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
15.9k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
15.9k
    return  _PyVarObject_CAST(ob)->ob_size;
293
15.9k
}
stringio.c:Py_SIZE
Line
Count
Source
289
31.7k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
31.7k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
31.7k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
31.7k
    return  _PyVarObject_CAST(ob)->ob_size;
293
31.7k
}
itertoolsmodule.c:Py_SIZE
Line
Count
Source
289
928
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
928
    assert(Py_TYPE(ob) != &PyLong_Type);
291
928
    assert(Py_TYPE(ob) != &PyBool_Type);
292
928
    return  _PyVarObject_CAST(ob)->ob_size;
293
928
}
sre.c:Py_SIZE
Line
Count
Source
289
71.1M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
71.1M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
71.1M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
71.1M
    return  _PyVarObject_CAST(ob)->ob_size;
293
71.1M
}
Unexecuted instantiation: _sysconfig.c:Py_SIZE
Unexecuted instantiation: _threadmodule.c:Py_SIZE
Unexecuted instantiation: timemodule.c:Py_SIZE
Unexecuted instantiation: _typesmodule.c:Py_SIZE
Unexecuted instantiation: _typingmodule.c:Py_SIZE
Unexecuted instantiation: _weakref.c:Py_SIZE
_abc.c:Py_SIZE
Line
Count
Source
289
19.3k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
19.3k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
19.3k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
19.3k
    return  _PyVarObject_CAST(ob)->ob_size;
293
19.3k
}
_functoolsmodule.c:Py_SIZE
Line
Count
Source
289
34.0k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
34.0k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
34.0k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
34.0k
    return  _PyVarObject_CAST(ob)->ob_size;
293
34.0k
}
Unexecuted instantiation: _localemodule.c:Py_SIZE
Unexecuted instantiation: _opcode.c:Py_SIZE
_operator.c:Py_SIZE
Line
Count
Source
289
1.37M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.37M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.37M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.37M
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.37M
}
Unexecuted instantiation: _stat.c:Py_SIZE
Unexecuted instantiation: symtablemodule.c:Py_SIZE
Unexecuted instantiation: pwdmodule.c:Py_SIZE
getpath.c:Py_SIZE
Line
Count
Source
289
144
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
144
    assert(Py_TYPE(ob) != &PyLong_Type);
291
144
    assert(Py_TYPE(ob) != &PyBool_Type);
292
144
    return  _PyVarObject_CAST(ob)->ob_size;
293
144
}
Unexecuted instantiation: frozen.c:Py_SIZE
Unexecuted instantiation: getbuildinfo.c:Py_SIZE
Unexecuted instantiation: peg_api.c:Py_SIZE
Unexecuted instantiation: file_tokenizer.c:Py_SIZE
Unexecuted instantiation: helpers.c:Py_SIZE
Unexecuted instantiation: myreadline.c:Py_SIZE
abstract.c:Py_SIZE
Line
Count
Source
289
106k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
106k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
106k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
106k
    return  _PyVarObject_CAST(ob)->ob_size;
293
106k
}
Unexecuted instantiation: boolobject.c:Py_SIZE
bytes_methods.c:Py_SIZE
Line
Count
Source
289
1.10M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.10M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.10M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.10M
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.10M
}
bytearrayobject.c:Py_SIZE
Line
Count
Source
289
71.6M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
71.6M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
71.6M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
71.6M
    return  _PyVarObject_CAST(ob)->ob_size;
293
71.6M
}
Unexecuted instantiation: capsule.c:Py_SIZE
Unexecuted instantiation: cellobject.c:Py_SIZE
Unexecuted instantiation: classobject.c:Py_SIZE
codeobject.c:Py_SIZE
Line
Count
Source
289
1.93M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.93M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.93M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.93M
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.93M
}
Unexecuted instantiation: complexobject.c:Py_SIZE
descrobject.c:Py_SIZE
Line
Count
Source
289
13.4M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
13.4M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
13.4M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
13.4M
    return  _PyVarObject_CAST(ob)->ob_size;
293
13.4M
}
Unexecuted instantiation: enumobject.c:Py_SIZE
Unexecuted instantiation: genobject.c:Py_SIZE
Unexecuted instantiation: fileobject.c:Py_SIZE
frameobject.c:Py_SIZE
Line
Count
Source
289
16
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
16
    assert(Py_TYPE(ob) != &PyLong_Type);
291
16
    assert(Py_TYPE(ob) != &PyBool_Type);
292
16
    return  _PyVarObject_CAST(ob)->ob_size;
293
16
}
Unexecuted instantiation: funcobject.c:Py_SIZE
Unexecuted instantiation: interpolationobject.c:Py_SIZE
Unexecuted instantiation: iterobject.c:Py_SIZE
odictobject.c:Py_SIZE
Line
Count
Source
289
16
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
16
    assert(Py_TYPE(ob) != &PyLong_Type);
291
16
    assert(Py_TYPE(ob) != &PyBool_Type);
292
16
    return  _PyVarObject_CAST(ob)->ob_size;
293
16
}
Unexecuted instantiation: methodobject.c:Py_SIZE
Unexecuted instantiation: namespaceobject.c:Py_SIZE
Unexecuted instantiation: _contextvars.c:Py_SIZE
Python-ast.c:Py_SIZE
Line
Count
Source
289
140
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
140
    assert(Py_TYPE(ob) != &PyLong_Type);
291
140
    assert(Py_TYPE(ob) != &PyBool_Type);
292
140
    return  _PyVarObject_CAST(ob)->ob_size;
293
140
}
Unexecuted instantiation: Python-tokenize.c:Py_SIZE
Unexecuted instantiation: asdl.c:Py_SIZE
assemble.c:Py_SIZE
Line
Count
Source
289
603k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
603k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
603k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
603k
    return  _PyVarObject_CAST(ob)->ob_size;
293
603k
}
Unexecuted instantiation: ast.c:Py_SIZE
Unexecuted instantiation: ast_preprocess.c:Py_SIZE
Unexecuted instantiation: ast_unparse.c:Py_SIZE
Unexecuted instantiation: critical_section.c:Py_SIZE
Unexecuted instantiation: crossinterp.c:Py_SIZE
Unexecuted instantiation: getcopyright.c:Py_SIZE
Unexecuted instantiation: getplatform.c:Py_SIZE
Unexecuted instantiation: getversion.c:Py_SIZE
Unexecuted instantiation: optimizer.c:Py_SIZE
Unexecuted instantiation: pathconfig.c:Py_SIZE
Unexecuted instantiation: structmember.c:Py_SIZE
Unexecuted instantiation: pegen.c:Py_SIZE
Unexecuted instantiation: pegen_errors.c:Py_SIZE
Unexecuted instantiation: parser.c:Py_SIZE
Unexecuted instantiation: buffer.c:Py_SIZE
lexer.c:Py_SIZE
Line
Count
Source
289
473
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
473
    assert(Py_TYPE(ob) != &PyLong_Type);
291
473
    assert(Py_TYPE(ob) != &PyBool_Type);
292
473
    return  _PyVarObject_CAST(ob)->ob_size;
293
473
}
Unexecuted instantiation: state.c:Py_SIZE
Unexecuted instantiation: readline_tokenizer.c:Py_SIZE
Unexecuted instantiation: string_tokenizer.c:Py_SIZE
Unexecuted instantiation: utf8_tokenizer.c:Py_SIZE
Unexecuted instantiation: getcompiler.c:Py_SIZE
Unexecuted instantiation: mystrtoul.c:Py_SIZE
Unexecuted instantiation: token.c:Py_SIZE
Unexecuted instantiation: action_helpers.c:Py_SIZE
Unexecuted instantiation: string_parser.c:Py_SIZE
294
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
295
5.92G
#  define Py_SIZE(ob) Py_SIZE(_PyObject_CAST(ob))
296
#endif
297
#endif // !defined(_Py_OPAQUE_PYOBJECT)
298
299
12.2G
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
12.2G
    return Py_TYPE(ob) == type;
301
12.2G
}
bytesobject.c:Py_IS_TYPE
Line
Count
Source
299
7.63M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
7.63M
    return Py_TYPE(ob) == type;
301
7.63M
}
Unexecuted instantiation: call.c:Py_IS_TYPE
exceptions.c:Py_IS_TYPE
Line
Count
Source
299
31.4M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
31.4M
    return Py_TYPE(ob) == type;
301
31.4M
}
Unexecuted instantiation: genericaliasobject.c:Py_IS_TYPE
floatobject.c:Py_IS_TYPE
Line
Count
Source
299
14.4M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
14.4M
    return Py_TYPE(ob) == type;
301
14.4M
}
listobject.c:Py_IS_TYPE
Line
Count
Source
299
364M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
364M
    return Py_TYPE(ob) == type;
301
364M
}
longobject.c:Py_IS_TYPE
Line
Count
Source
299
844M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
844M
    return Py_TYPE(ob) == type;
301
844M
}
dictobject.c:Py_IS_TYPE
Line
Count
Source
299
2.69G
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
2.69G
    return Py_TYPE(ob) == type;
301
2.69G
}
memoryobject.c:Py_IS_TYPE
Line
Count
Source
299
1.53k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.53k
    return Py_TYPE(ob) == type;
301
1.53k
}
moduleobject.c:Py_IS_TYPE
Line
Count
Source
299
20.1M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
20.1M
    return Py_TYPE(ob) == type;
301
20.1M
}
object.c:Py_IS_TYPE
Line
Count
Source
299
412M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
412M
    return Py_TYPE(ob) == type;
301
412M
}
Unexecuted instantiation: obmalloc.c:Py_IS_TYPE
Unexecuted instantiation: picklebufobject.c:Py_IS_TYPE
rangeobject.c:Py_IS_TYPE
Line
Count
Source
299
519
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
519
    return Py_TYPE(ob) == type;
301
519
}
setobject.c:Py_IS_TYPE
Line
Count
Source
299
114M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
114M
    return Py_TYPE(ob) == type;
301
114M
}
sliceobject.c:Py_IS_TYPE
Line
Count
Source
299
800
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
800
    return Py_TYPE(ob) == type;
301
800
}
Unexecuted instantiation: structseq.c:Py_IS_TYPE
Unexecuted instantiation: templateobject.c:Py_IS_TYPE
tupleobject.c:Py_IS_TYPE
Line
Count
Source
299
490M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
490M
    return Py_TYPE(ob) == type;
301
490M
}
typeobject.c:Py_IS_TYPE
Line
Count
Source
299
170M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
170M
    return Py_TYPE(ob) == type;
301
170M
}
Unexecuted instantiation: typevarobject.c:Py_IS_TYPE
unicodeobject.c:Py_IS_TYPE
Line
Count
Source
299
429M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
429M
    return Py_TYPE(ob) == type;
301
429M
}
Unexecuted instantiation: unicodectype.c:Py_IS_TYPE
unionobject.c:Py_IS_TYPE
Line
Count
Source
299
475
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
475
    return Py_TYPE(ob) == type;
301
475
}
weakrefobject.c:Py_IS_TYPE
Line
Count
Source
299
520k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
520k
    return Py_TYPE(ob) == type;
301
520k
}
_warnings.c:Py_IS_TYPE
Line
Count
Source
299
18.8k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
18.8k
    return Py_TYPE(ob) == type;
301
18.8k
}
bltinmodule.c:Py_IS_TYPE
Line
Count
Source
299
36.9M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
36.9M
    return Py_TYPE(ob) == type;
301
36.9M
}
ceval.c:Py_IS_TYPE
Line
Count
Source
299
5.67G
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
5.67G
    return Py_TYPE(ob) == type;
301
5.67G
}
codecs.c:Py_IS_TYPE
Line
Count
Source
299
1.48M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.48M
    return Py_TYPE(ob) == type;
301
1.48M
}
codegen.c:Py_IS_TYPE
Line
Count
Source
299
48
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
48
    return Py_TYPE(ob) == type;
301
48
}
compile.c:Py_IS_TYPE
Line
Count
Source
299
169k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
169k
    return Py_TYPE(ob) == type;
301
169k
}
context.c:Py_IS_TYPE
Line
Count
Source
299
16.6k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
16.6k
    return Py_TYPE(ob) == type;
301
16.6k
}
Unexecuted instantiation: errors.c:Py_IS_TYPE
flowgraph.c:Py_IS_TYPE
Line
Count
Source
299
68.9k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
68.9k
    return Py_TYPE(ob) == type;
301
68.9k
}
Unexecuted instantiation: frame.c:Py_IS_TYPE
Unexecuted instantiation: future.c:Py_IS_TYPE
gc.c:Py_IS_TYPE
Line
Count
Source
299
173M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
173M
    return Py_TYPE(ob) == type;
301
173M
}
Unexecuted instantiation: gc_gil.c:Py_IS_TYPE
getargs.c:Py_IS_TYPE
Line
Count
Source
299
10.4M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
10.4M
    return Py_TYPE(ob) == type;
301
10.4M
}
Unexecuted instantiation: ceval_gil.c:Py_IS_TYPE
Unexecuted instantiation: hamt.c:Py_IS_TYPE
Unexecuted instantiation: hashtable.c:Py_IS_TYPE
import.c:Py_IS_TYPE
Line
Count
Source
299
1.16k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.16k
    return Py_TYPE(ob) == type;
301
1.16k
}
importdl.c:Py_IS_TYPE
Line
Count
Source
299
766
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
766
    return Py_TYPE(ob) == type;
301
766
}
initconfig.c:Py_IS_TYPE
Line
Count
Source
299
128
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
128
    return Py_TYPE(ob) == type;
301
128
}
Unexecuted instantiation: instrumentation.c:Py_IS_TYPE
Unexecuted instantiation: instruction_sequence.c:Py_IS_TYPE
intrinsics.c:Py_IS_TYPE
Line
Count
Source
299
13.6k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
13.6k
    return Py_TYPE(ob) == type;
301
13.6k
}
Unexecuted instantiation: legacy_tracing.c:Py_IS_TYPE
Unexecuted instantiation: lock.c:Py_IS_TYPE
marshal.c:Py_IS_TYPE
Line
Count
Source
299
499k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
499k
    return Py_TYPE(ob) == type;
301
499k
}
modsupport.c:Py_IS_TYPE
Line
Count
Source
299
8.95k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
8.95k
    return Py_TYPE(ob) == type;
301
8.95k
}
Unexecuted instantiation: mysnprintf.c:Py_IS_TYPE
Unexecuted instantiation: parking_lot.c:Py_IS_TYPE
Unexecuted instantiation: preconfig.c:Py_IS_TYPE
Unexecuted instantiation: pyarena.c:Py_IS_TYPE
Unexecuted instantiation: pyctype.c:Py_IS_TYPE
Unexecuted instantiation: pyhash.c:Py_IS_TYPE
Unexecuted instantiation: pylifecycle.c:Py_IS_TYPE
Unexecuted instantiation: pymath.c:Py_IS_TYPE
Unexecuted instantiation: pystate.c:Py_IS_TYPE
Unexecuted instantiation: pythonrun.c:Py_IS_TYPE
Unexecuted instantiation: pytime.c:Py_IS_TYPE
Unexecuted instantiation: qsbr.c:Py_IS_TYPE
Unexecuted instantiation: bootstrap_hash.c:Py_IS_TYPE
specialize.c:Py_IS_TYPE
Line
Count
Source
299
19.9M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
19.9M
    return Py_TYPE(ob) == type;
301
19.9M
}
Unexecuted instantiation: symtable.c:Py_IS_TYPE
sysmodule.c:Py_IS_TYPE
Line
Count
Source
299
666
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
666
    return Py_TYPE(ob) == type;
301
666
}
Unexecuted instantiation: thread.c:Py_IS_TYPE
traceback.c:Py_IS_TYPE
Line
Count
Source
299
31.4M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
31.4M
    return Py_TYPE(ob) == type;
301
31.4M
}
Unexecuted instantiation: tracemalloc.c:Py_IS_TYPE
Unexecuted instantiation: getopt.c:Py_IS_TYPE
Unexecuted instantiation: pystrcmp.c:Py_IS_TYPE
Unexecuted instantiation: pystrtod.c:Py_IS_TYPE
Unexecuted instantiation: pystrhex.c:Py_IS_TYPE
Unexecuted instantiation: dtoa.c:Py_IS_TYPE
formatter_unicode.c:Py_IS_TYPE
Line
Count
Source
299
15.5M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
15.5M
    return Py_TYPE(ob) == type;
301
15.5M
}
Unexecuted instantiation: fileutils.c:Py_IS_TYPE
Unexecuted instantiation: suggestions.c:Py_IS_TYPE
Unexecuted instantiation: perf_trampoline.c:Py_IS_TYPE
Unexecuted instantiation: perf_jit_trampoline.c:Py_IS_TYPE
Unexecuted instantiation: remote_debugging.c:Py_IS_TYPE
Unexecuted instantiation: dynload_shlib.c:Py_IS_TYPE
Unexecuted instantiation: config.c:Py_IS_TYPE
Unexecuted instantiation: gcmodule.c:Py_IS_TYPE
Unexecuted instantiation: _asynciomodule.c:Py_IS_TYPE
Unexecuted instantiation: atexitmodule.c:Py_IS_TYPE
Unexecuted instantiation: faulthandler.c:Py_IS_TYPE
Unexecuted instantiation: posixmodule.c:Py_IS_TYPE
Unexecuted instantiation: signalmodule.c:Py_IS_TYPE
Unexecuted instantiation: _tracemalloc.c:Py_IS_TYPE
Unexecuted instantiation: _suggestions.c:Py_IS_TYPE
_datetimemodule.c:Py_IS_TYPE
Line
Count
Source
299
6
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
6
    return Py_TYPE(ob) == type;
301
6
}
Unexecuted instantiation: _codecsmodule.c:Py_IS_TYPE
Unexecuted instantiation: _collectionsmodule.c:Py_IS_TYPE
Unexecuted instantiation: errnomodule.c:Py_IS_TYPE
Unexecuted instantiation: _iomodule.c:Py_IS_TYPE
Unexecuted instantiation: iobase.c:Py_IS_TYPE
fileio.c:Py_IS_TYPE
Line
Count
Source
299
1.28k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.28k
    return Py_TYPE(ob) == type;
301
1.28k
}
bytesio.c:Py_IS_TYPE
Line
Count
Source
299
9.51k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
9.51k
    return Py_TYPE(ob) == type;
301
9.51k
}
bufferedio.c:Py_IS_TYPE
Line
Count
Source
299
2.10k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
2.10k
    return Py_TYPE(ob) == type;
301
2.10k
}
textio.c:Py_IS_TYPE
Line
Count
Source
299
128
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
128
    return Py_TYPE(ob) == type;
301
128
}
stringio.c:Py_IS_TYPE
Line
Count
Source
299
19.4M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
19.4M
    return Py_TYPE(ob) == type;
301
19.4M
}
Unexecuted instantiation: itertoolsmodule.c:Py_IS_TYPE
sre.c:Py_IS_TYPE
Line
Count
Source
299
97.3k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
97.3k
    return Py_TYPE(ob) == type;
301
97.3k
}
Unexecuted instantiation: _sysconfig.c:Py_IS_TYPE
Unexecuted instantiation: _threadmodule.c:Py_IS_TYPE
Unexecuted instantiation: timemodule.c:Py_IS_TYPE
Unexecuted instantiation: _typesmodule.c:Py_IS_TYPE
Unexecuted instantiation: _typingmodule.c:Py_IS_TYPE
_weakref.c:Py_IS_TYPE
Line
Count
Source
299
2.73k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
2.73k
    return Py_TYPE(ob) == type;
301
2.73k
}
_abc.c:Py_IS_TYPE
Line
Count
Source
299
992
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
992
    return Py_TYPE(ob) == type;
301
992
}
_functoolsmodule.c:Py_IS_TYPE
Line
Count
Source
299
45
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
45
    return Py_TYPE(ob) == type;
301
45
}
Unexecuted instantiation: _localemodule.c:Py_IS_TYPE
Unexecuted instantiation: _opcode.c:Py_IS_TYPE
_operator.c:Py_IS_TYPE
Line
Count
Source
299
1.37M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.37M
    return Py_TYPE(ob) == type;
301
1.37M
}
Unexecuted instantiation: _stat.c:Py_IS_TYPE
Unexecuted instantiation: symtablemodule.c:Py_IS_TYPE
Unexecuted instantiation: pwdmodule.c:Py_IS_TYPE
getpath.c:Py_IS_TYPE
Line
Count
Source
299
16
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
16
    return Py_TYPE(ob) == type;
301
16
}
Unexecuted instantiation: frozen.c:Py_IS_TYPE
Unexecuted instantiation: getbuildinfo.c:Py_IS_TYPE
Unexecuted instantiation: peg_api.c:Py_IS_TYPE
Unexecuted instantiation: file_tokenizer.c:Py_IS_TYPE
Unexecuted instantiation: helpers.c:Py_IS_TYPE
Unexecuted instantiation: myreadline.c:Py_IS_TYPE
abstract.c:Py_IS_TYPE
Line
Count
Source
299
174M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
174M
    return Py_TYPE(ob) == type;
301
174M
}
Unexecuted instantiation: boolobject.c:Py_IS_TYPE
Unexecuted instantiation: bytes_methods.c:Py_IS_TYPE
bytearrayobject.c:Py_IS_TYPE
Line
Count
Source
299
10.1k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
10.1k
    return Py_TYPE(ob) == type;
301
10.1k
}
capsule.c:Py_IS_TYPE
Line
Count
Source
299
16.3k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
16.3k
    return Py_TYPE(ob) == type;
301
16.3k
}
cellobject.c:Py_IS_TYPE
Line
Count
Source
299
3.36k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
3.36k
    return Py_TYPE(ob) == type;
301
3.36k
}
Unexecuted instantiation: classobject.c:Py_IS_TYPE
codeobject.c:Py_IS_TYPE
Line
Count
Source
299
1.34M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.34M
    return Py_TYPE(ob) == type;
301
1.34M
}
complexobject.c:Py_IS_TYPE
Line
Count
Source
299
10.5k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
10.5k
    return Py_TYPE(ob) == type;
301
10.5k
}
descrobject.c:Py_IS_TYPE
Line
Count
Source
299
480M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
480M
    return Py_TYPE(ob) == type;
301
480M
}
Unexecuted instantiation: enumobject.c:Py_IS_TYPE
genobject.c:Py_IS_TYPE
Line
Count
Source
299
50.2M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
50.2M
    return Py_TYPE(ob) == type;
301
50.2M
}
Unexecuted instantiation: fileobject.c:Py_IS_TYPE
frameobject.c:Py_IS_TYPE
Line
Count
Source
299
16
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
16
    return Py_TYPE(ob) == type;
301
16
}
funcobject.c:Py_IS_TYPE
Line
Count
Source
299
66
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
66
    return Py_TYPE(ob) == type;
301
66
}
Unexecuted instantiation: interpolationobject.c:Py_IS_TYPE
Unexecuted instantiation: iterobject.c:Py_IS_TYPE
odictobject.c:Py_IS_TYPE
Line
Count
Source
299
8
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
8
    return Py_TYPE(ob) == type;
301
8
}
methodobject.c:Py_IS_TYPE
Line
Count
Source
299
3.91k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
3.91k
    return Py_TYPE(ob) == type;
301
3.91k
}
Unexecuted instantiation: namespaceobject.c:Py_IS_TYPE
Unexecuted instantiation: _contextvars.c:Py_IS_TYPE
Unexecuted instantiation: Python-ast.c:Py_IS_TYPE
Unexecuted instantiation: Python-tokenize.c:Py_IS_TYPE
Unexecuted instantiation: asdl.c:Py_IS_TYPE
Unexecuted instantiation: assemble.c:Py_IS_TYPE
ast.c:Py_IS_TYPE
Line
Count
Source
299
11.5k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
11.5k
    return Py_TYPE(ob) == type;
301
11.5k
}
Unexecuted instantiation: ast_preprocess.c:Py_IS_TYPE
Unexecuted instantiation: ast_unparse.c:Py_IS_TYPE
Unexecuted instantiation: critical_section.c:Py_IS_TYPE
Unexecuted instantiation: crossinterp.c:Py_IS_TYPE
Unexecuted instantiation: getcopyright.c:Py_IS_TYPE
Unexecuted instantiation: getplatform.c:Py_IS_TYPE
Unexecuted instantiation: getversion.c:Py_IS_TYPE
Unexecuted instantiation: optimizer.c:Py_IS_TYPE
Unexecuted instantiation: pathconfig.c:Py_IS_TYPE
Unexecuted instantiation: structmember.c:Py_IS_TYPE
pegen.c:Py_IS_TYPE
Line
Count
Source
299
13.1k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
13.1k
    return Py_TYPE(ob) == type;
301
13.1k
}
Unexecuted instantiation: pegen_errors.c:Py_IS_TYPE
Unexecuted instantiation: parser.c:Py_IS_TYPE
Unexecuted instantiation: buffer.c:Py_IS_TYPE
Unexecuted instantiation: lexer.c:Py_IS_TYPE
Unexecuted instantiation: state.c:Py_IS_TYPE
Unexecuted instantiation: readline_tokenizer.c:Py_IS_TYPE
Unexecuted instantiation: string_tokenizer.c:Py_IS_TYPE
Unexecuted instantiation: utf8_tokenizer.c:Py_IS_TYPE
Unexecuted instantiation: getcompiler.c:Py_IS_TYPE
Unexecuted instantiation: mystrtoul.c:Py_IS_TYPE
Unexecuted instantiation: token.c:Py_IS_TYPE
action_helpers.c:Py_IS_TYPE
Line
Count
Source
299
164k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
164k
    return Py_TYPE(ob) == type;
301
164k
}
Unexecuted instantiation: string_parser.c:Py_IS_TYPE
302
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
303
19.6G
#  define Py_IS_TYPE(ob, type) Py_IS_TYPE(_PyObject_CAST(ob), (type))
304
#endif
305
306
307
#ifndef _Py_OPAQUE_PYOBJECT
308
1.03G
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
1.03G
    ob->ob_type = type;
310
1.03G
}
bytesobject.c:Py_SET_TYPE
Line
Count
Source
308
18.4M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
18.4M
    ob->ob_type = type;
310
18.4M
}
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
308
501k
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
501k
    ob->ob_type = type;
310
501k
}
Unexecuted instantiation: listobject.c:Py_SET_TYPE
longobject.c:Py_SET_TYPE
Line
Count
Source
308
87.9M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
87.9M
    ob->ob_type = type;
310
87.9M
}
Unexecuted instantiation: dictobject.c:Py_SET_TYPE
Unexecuted instantiation: memoryobject.c:Py_SET_TYPE
moduleobject.c:Py_SET_TYPE
Line
Count
Source
308
447
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
447
    ob->ob_type = type;
310
447
}
object.c:Py_SET_TYPE
Line
Count
Source
308
46.1k
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
46.1k
    ob->ob_type = type;
310
46.1k
}
Unexecuted instantiation: obmalloc.c:Py_SET_TYPE
Unexecuted instantiation: picklebufobject.c:Py_SET_TYPE
Unexecuted instantiation: rangeobject.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
308
128
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
128
    ob->ob_type = type;
310
128
}
Unexecuted instantiation: templateobject.c:Py_SET_TYPE
Unexecuted instantiation: tupleobject.c:Py_SET_TYPE
typeobject.c:Py_SET_TYPE
Line
Count
Source
308
105M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
105M
    ob->ob_type = type;
310
105M
}
Unexecuted instantiation: typevarobject.c:Py_SET_TYPE
unicodeobject.c:Py_SET_TYPE
Line
Count
Source
308
481M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
481M
    ob->ob_type = type;
310
481M
}
Unexecuted instantiation: unicodectype.c:Py_SET_TYPE
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
308
343M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
343M
    ob->ob_type = type;
310
343M
}
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: 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: formatter_unicode.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: 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
308
70
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
70
    ob->ob_type = type;
310
70
}
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
308
12
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
12
    ob->ob_type = type;
310
12
}
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
308
4.04k
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
4.04k
    ob->ob_type = type;
310
4.04k
}
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: 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: structmember.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: state.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
311
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
312
1.03G
#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
313
#endif
314
315
1.23G
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
1.23G
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
1.23G
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
1.23G
    ob->ob_size = size;
322
1.23G
#endif
323
1.23G
}
bytesobject.c:Py_SET_SIZE
Line
Count
Source
315
21.5M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
21.5M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
21.5M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
21.5M
    ob->ob_size = size;
322
21.5M
#endif
323
21.5M
}
Unexecuted instantiation: call.c:Py_SET_SIZE
Unexecuted instantiation: exceptions.c:Py_SET_SIZE
Unexecuted instantiation: genericaliasobject.c:Py_SET_SIZE
Unexecuted instantiation: floatobject.c:Py_SET_SIZE
listobject.c:Py_SET_SIZE
Line
Count
Source
315
573M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
573M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
573M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
573M
    ob->ob_size = size;
322
573M
#endif
323
573M
}
Unexecuted instantiation: longobject.c:Py_SET_SIZE
Unexecuted instantiation: dictobject.c:Py_SET_SIZE
Unexecuted instantiation: memoryobject.c:Py_SET_SIZE
Unexecuted instantiation: moduleobject.c:Py_SET_SIZE
object.c:Py_SET_SIZE
Line
Count
Source
315
32.8k
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
32.8k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
32.8k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
32.8k
    ob->ob_size = size;
322
32.8k
#endif
323
32.8k
}
Unexecuted instantiation: obmalloc.c:Py_SET_SIZE
Unexecuted instantiation: picklebufobject.c:Py_SET_SIZE
Unexecuted instantiation: rangeobject.c:Py_SET_SIZE
Unexecuted instantiation: setobject.c:Py_SET_SIZE
Unexecuted instantiation: sliceobject.c:Py_SET_SIZE
structseq.c:Py_SET_SIZE
Line
Count
Source
315
4.66k
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
4.66k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
4.66k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
4.66k
    ob->ob_size = size;
322
4.66k
#endif
323
4.66k
}
Unexecuted instantiation: templateobject.c:Py_SET_SIZE
Unexecuted instantiation: tupleobject.c:Py_SET_SIZE
typeobject.c:Py_SET_SIZE
Line
Count
Source
315
2.00M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
2.00M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
2.00M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
2.00M
    ob->ob_size = size;
322
2.00M
#endif
323
2.00M
}
Unexecuted instantiation: typevarobject.c:Py_SET_SIZE
unicodeobject.c:Py_SET_SIZE
Line
Count
Source
315
16.3M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
16.3M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
16.3M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
16.3M
    ob->ob_size = size;
322
16.3M
#endif
323
16.3M
}
Unexecuted instantiation: unicodectype.c:Py_SET_SIZE
Unexecuted instantiation: unionobject.c:Py_SET_SIZE
Unexecuted instantiation: weakrefobject.c:Py_SET_SIZE
Unexecuted instantiation: _warnings.c:Py_SET_SIZE
Unexecuted instantiation: bltinmodule.c:Py_SET_SIZE
ceval.c:Py_SET_SIZE
Line
Count
Source
315
335M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
335M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
335M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
335M
    ob->ob_size = size;
322
335M
#endif
323
335M
}
Unexecuted instantiation: codecs.c:Py_SET_SIZE
Unexecuted instantiation: codegen.c:Py_SET_SIZE
Unexecuted instantiation: compile.c:Py_SET_SIZE
Unexecuted instantiation: context.c:Py_SET_SIZE
Unexecuted instantiation: errors.c:Py_SET_SIZE
Unexecuted instantiation: flowgraph.c:Py_SET_SIZE
Unexecuted instantiation: frame.c:Py_SET_SIZE
Unexecuted instantiation: future.c:Py_SET_SIZE
gc.c:Py_SET_SIZE
Line
Count
Source
315
203M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
203M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
203M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
203M
    ob->ob_size = size;
322
203M
#endif
323
203M
}
Unexecuted instantiation: gc_gil.c:Py_SET_SIZE
Unexecuted instantiation: getargs.c:Py_SET_SIZE
Unexecuted instantiation: ceval_gil.c:Py_SET_SIZE
Unexecuted instantiation: hamt.c:Py_SET_SIZE
Unexecuted instantiation: hashtable.c:Py_SET_SIZE
Unexecuted instantiation: import.c:Py_SET_SIZE
Unexecuted instantiation: importdl.c:Py_SET_SIZE
Unexecuted instantiation: initconfig.c:Py_SET_SIZE
Unexecuted instantiation: instrumentation.c:Py_SET_SIZE
Unexecuted instantiation: instruction_sequence.c:Py_SET_SIZE
Unexecuted instantiation: intrinsics.c:Py_SET_SIZE
Unexecuted instantiation: legacy_tracing.c:Py_SET_SIZE
Unexecuted instantiation: lock.c:Py_SET_SIZE
Unexecuted instantiation: marshal.c:Py_SET_SIZE
Unexecuted instantiation: modsupport.c:Py_SET_SIZE
Unexecuted instantiation: mysnprintf.c:Py_SET_SIZE
Unexecuted instantiation: parking_lot.c:Py_SET_SIZE
Unexecuted instantiation: preconfig.c:Py_SET_SIZE
Unexecuted instantiation: pyarena.c:Py_SET_SIZE
Unexecuted instantiation: pyctype.c:Py_SET_SIZE
Unexecuted instantiation: pyhash.c:Py_SET_SIZE
Unexecuted instantiation: pylifecycle.c:Py_SET_SIZE
Unexecuted instantiation: pymath.c:Py_SET_SIZE
Unexecuted instantiation: pystate.c:Py_SET_SIZE
Unexecuted instantiation: pythonrun.c:Py_SET_SIZE
Unexecuted instantiation: pytime.c:Py_SET_SIZE
Unexecuted instantiation: qsbr.c:Py_SET_SIZE
Unexecuted instantiation: bootstrap_hash.c:Py_SET_SIZE
Unexecuted instantiation: specialize.c:Py_SET_SIZE
Unexecuted instantiation: symtable.c:Py_SET_SIZE
Unexecuted instantiation: sysmodule.c:Py_SET_SIZE
Unexecuted instantiation: thread.c:Py_SET_SIZE
Unexecuted instantiation: traceback.c:Py_SET_SIZE
Unexecuted instantiation: tracemalloc.c:Py_SET_SIZE
Unexecuted instantiation: getopt.c:Py_SET_SIZE
Unexecuted instantiation: pystrcmp.c:Py_SET_SIZE
Unexecuted instantiation: pystrtod.c:Py_SET_SIZE
Unexecuted instantiation: pystrhex.c:Py_SET_SIZE
Unexecuted instantiation: dtoa.c:Py_SET_SIZE
Unexecuted instantiation: formatter_unicode.c:Py_SET_SIZE
Unexecuted instantiation: fileutils.c:Py_SET_SIZE
Unexecuted instantiation: suggestions.c:Py_SET_SIZE
Unexecuted instantiation: perf_trampoline.c:Py_SET_SIZE
Unexecuted instantiation: perf_jit_trampoline.c:Py_SET_SIZE
Unexecuted instantiation: remote_debugging.c:Py_SET_SIZE
Unexecuted instantiation: dynload_shlib.c:Py_SET_SIZE
Unexecuted instantiation: config.c:Py_SET_SIZE
Unexecuted instantiation: gcmodule.c:Py_SET_SIZE
Unexecuted instantiation: _asynciomodule.c:Py_SET_SIZE
Unexecuted instantiation: atexitmodule.c:Py_SET_SIZE
Unexecuted instantiation: faulthandler.c:Py_SET_SIZE
Unexecuted instantiation: posixmodule.c:Py_SET_SIZE
Unexecuted instantiation: signalmodule.c:Py_SET_SIZE
Unexecuted instantiation: _tracemalloc.c:Py_SET_SIZE
Unexecuted instantiation: _suggestions.c:Py_SET_SIZE
Unexecuted instantiation: _datetimemodule.c:Py_SET_SIZE
Unexecuted instantiation: _codecsmodule.c:Py_SET_SIZE
_collectionsmodule.c:Py_SET_SIZE
Line
Count
Source
315
71.6M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
71.6M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
71.6M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
71.6M
    ob->ob_size = size;
322
71.6M
#endif
323
71.6M
}
Unexecuted instantiation: errnomodule.c:Py_SET_SIZE
Unexecuted instantiation: _iomodule.c:Py_SET_SIZE
Unexecuted instantiation: iobase.c:Py_SET_SIZE
Unexecuted instantiation: fileio.c:Py_SET_SIZE
Unexecuted instantiation: bytesio.c:Py_SET_SIZE
Unexecuted instantiation: bufferedio.c:Py_SET_SIZE
Unexecuted instantiation: textio.c:Py_SET_SIZE
Unexecuted instantiation: stringio.c:Py_SET_SIZE
Unexecuted instantiation: itertoolsmodule.c:Py_SET_SIZE
Unexecuted instantiation: sre.c:Py_SET_SIZE
Unexecuted instantiation: _sysconfig.c:Py_SET_SIZE
Unexecuted instantiation: _threadmodule.c:Py_SET_SIZE
Unexecuted instantiation: timemodule.c:Py_SET_SIZE
Unexecuted instantiation: _typesmodule.c:Py_SET_SIZE
Unexecuted instantiation: _typingmodule.c:Py_SET_SIZE
Unexecuted instantiation: _weakref.c:Py_SET_SIZE
Unexecuted instantiation: _abc.c:Py_SET_SIZE
Unexecuted instantiation: _functoolsmodule.c:Py_SET_SIZE
Unexecuted instantiation: _localemodule.c:Py_SET_SIZE
Unexecuted instantiation: _opcode.c:Py_SET_SIZE
Unexecuted instantiation: _operator.c:Py_SET_SIZE
Unexecuted instantiation: _stat.c:Py_SET_SIZE
Unexecuted instantiation: symtablemodule.c:Py_SET_SIZE
Unexecuted instantiation: pwdmodule.c:Py_SET_SIZE
Unexecuted instantiation: getpath.c:Py_SET_SIZE
Unexecuted instantiation: frozen.c:Py_SET_SIZE
Unexecuted instantiation: getbuildinfo.c:Py_SET_SIZE
Unexecuted instantiation: peg_api.c:Py_SET_SIZE
Unexecuted instantiation: file_tokenizer.c:Py_SET_SIZE
Unexecuted instantiation: helpers.c:Py_SET_SIZE
Unexecuted instantiation: myreadline.c:Py_SET_SIZE
abstract.c:Py_SET_SIZE
Line
Count
Source
315
200
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
200
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
200
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
200
    ob->ob_size = size;
322
200
#endif
323
200
}
Unexecuted instantiation: boolobject.c:Py_SET_SIZE
Unexecuted instantiation: bytes_methods.c:Py_SET_SIZE
bytearrayobject.c:Py_SET_SIZE
Line
Count
Source
315
5.91M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
5.91M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
5.91M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
318
#ifdef Py_GIL_DISABLED
319
    _Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
320
#else
321
5.91M
    ob->ob_size = size;
322
5.91M
#endif
323
5.91M
}
Unexecuted instantiation: capsule.c:Py_SET_SIZE
Unexecuted instantiation: cellobject.c:Py_SET_SIZE
Unexecuted instantiation: classobject.c:Py_SET_SIZE
Unexecuted instantiation: codeobject.c:Py_SET_SIZE
Unexecuted instantiation: complexobject.c:Py_SET_SIZE
Unexecuted instantiation: descrobject.c:Py_SET_SIZE
Unexecuted instantiation: enumobject.c:Py_SET_SIZE
Unexecuted instantiation: genobject.c:Py_SET_SIZE
Unexecuted instantiation: fileobject.c:Py_SET_SIZE
Unexecuted instantiation: frameobject.c:Py_SET_SIZE
Unexecuted instantiation: funcobject.c:Py_SET_SIZE
Unexecuted instantiation: interpolationobject.c:Py_SET_SIZE
Unexecuted instantiation: iterobject.c:Py_SET_SIZE
Unexecuted instantiation: odictobject.c:Py_SET_SIZE
Unexecuted instantiation: methodobject.c:Py_SET_SIZE
Unexecuted instantiation: namespaceobject.c:Py_SET_SIZE
Unexecuted instantiation: _contextvars.c:Py_SET_SIZE
Unexecuted instantiation: Python-ast.c:Py_SET_SIZE
Unexecuted instantiation: Python-tokenize.c:Py_SET_SIZE
Unexecuted instantiation: asdl.c:Py_SET_SIZE
Unexecuted instantiation: assemble.c:Py_SET_SIZE
Unexecuted instantiation: ast.c:Py_SET_SIZE
Unexecuted instantiation: ast_preprocess.c:Py_SET_SIZE
Unexecuted instantiation: ast_unparse.c:Py_SET_SIZE
Unexecuted instantiation: critical_section.c:Py_SET_SIZE
Unexecuted instantiation: crossinterp.c:Py_SET_SIZE
Unexecuted instantiation: getcopyright.c:Py_SET_SIZE
Unexecuted instantiation: getplatform.c:Py_SET_SIZE
Unexecuted instantiation: getversion.c:Py_SET_SIZE
Unexecuted instantiation: optimizer.c:Py_SET_SIZE
Unexecuted instantiation: pathconfig.c:Py_SET_SIZE
Unexecuted instantiation: structmember.c:Py_SET_SIZE
Unexecuted instantiation: pegen.c:Py_SET_SIZE
Unexecuted instantiation: pegen_errors.c:Py_SET_SIZE
Unexecuted instantiation: parser.c:Py_SET_SIZE
Unexecuted instantiation: buffer.c:Py_SET_SIZE
Unexecuted instantiation: lexer.c:Py_SET_SIZE
Unexecuted instantiation: state.c:Py_SET_SIZE
Unexecuted instantiation: readline_tokenizer.c:Py_SET_SIZE
Unexecuted instantiation: string_tokenizer.c:Py_SET_SIZE
Unexecuted instantiation: utf8_tokenizer.c:Py_SET_SIZE
Unexecuted instantiation: getcompiler.c:Py_SET_SIZE
Unexecuted instantiation: mystrtoul.c:Py_SET_SIZE
Unexecuted instantiation: token.c:Py_SET_SIZE
Unexecuted instantiation: action_helpers.c:Py_SET_SIZE
Unexecuted instantiation: string_parser.c:Py_SET_SIZE
324
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
325
1.23G
#  define Py_SET_SIZE(ob, size) Py_SET_SIZE(_PyVarObject_CAST(ob), (size))
326
#endif
327
#endif // !defined(_Py_OPAQUE_PYOBJECT)
328
329
330
/*
331
Type objects contain a string containing the type name (to help somewhat
332
in debugging), the allocation parameters (see PyObject_New() and
333
PyObject_NewVar()),
334
and methods for accessing objects of the type.  Methods are optional, a
335
nil pointer meaning that particular kind of access is not available for
336
this type.  The Py_DECREF() macro uses the tp_dealloc method without
337
checking for a nil pointer; it should always be implemented except if
338
the implementation can guarantee that the reference count will never
339
reach zero (e.g., for statically allocated type objects).
340
341
NB: the methods for certain type groups are now contained in separate
342
method blocks.
343
*/
344
345
typedef PyObject * (*unaryfunc)(PyObject *);
346
typedef PyObject * (*binaryfunc)(PyObject *, PyObject *);
347
typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *);
348
typedef int (*inquiry)(PyObject *);
349
typedef Py_ssize_t (*lenfunc)(PyObject *);
350
typedef PyObject *(*ssizeargfunc)(PyObject *, Py_ssize_t);
351
typedef PyObject *(*ssizessizeargfunc)(PyObject *, Py_ssize_t, Py_ssize_t);
352
typedef int(*ssizeobjargproc)(PyObject *, Py_ssize_t, PyObject *);
353
typedef int(*ssizessizeobjargproc)(PyObject *, Py_ssize_t, Py_ssize_t, PyObject *);
354
typedef int(*objobjargproc)(PyObject *, PyObject *, PyObject *);
355
356
typedef int (*objobjproc)(PyObject *, PyObject *);
357
typedef int (*visitproc)(PyObject *, void *);
358
typedef int (*traverseproc)(PyObject *, visitproc, void *);
359
360
361
typedef void (*freefunc)(void *);
362
typedef void (*destructor)(PyObject *);
363
typedef PyObject *(*getattrfunc)(PyObject *, char *);
364
typedef PyObject *(*getattrofunc)(PyObject *, PyObject *);
365
typedef int (*setattrfunc)(PyObject *, char *, PyObject *);
366
typedef int (*setattrofunc)(PyObject *, PyObject *, PyObject *);
367
typedef PyObject *(*reprfunc)(PyObject *);
368
typedef Py_hash_t (*hashfunc)(PyObject *);
369
typedef PyObject *(*richcmpfunc) (PyObject *, PyObject *, int);
370
typedef PyObject *(*getiterfunc) (PyObject *);
371
typedef PyObject *(*iternextfunc) (PyObject *);
372
typedef PyObject *(*descrgetfunc) (PyObject *, PyObject *, PyObject *);
373
typedef int (*descrsetfunc) (PyObject *, PyObject *, PyObject *);
374
typedef int (*initproc)(PyObject *, PyObject *, PyObject *);
375
typedef PyObject *(*newfunc)(PyTypeObject *, PyObject *, PyObject *);
376
typedef PyObject *(*allocfunc)(PyTypeObject *, Py_ssize_t);
377
378
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030c0000 // 3.12
379
typedef PyObject *(*vectorcallfunc)(PyObject *callable, PyObject *const *args,
380
                                    size_t nargsf, PyObject *kwnames);
381
#endif
382
383
typedef struct{
384
    int slot;    /* slot id, see below */
385
    void *pfunc; /* function pointer */
386
} PyType_Slot;
387
388
typedef struct{
389
    const char* name;
390
    int basicsize;
391
    int itemsize;
392
    unsigned int flags;
393
    PyType_Slot *slots; /* terminated by slot==0. */
394
} PyType_Spec;
395
396
PyAPI_FUNC(PyObject*) PyType_FromSpec(PyType_Spec*);
397
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
398
PyAPI_FUNC(PyObject*) PyType_FromSpecWithBases(PyType_Spec*, PyObject*);
399
#endif
400
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03040000
401
PyAPI_FUNC(void*) PyType_GetSlot(PyTypeObject*, int);
402
#endif
403
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03090000
404
PyAPI_FUNC(PyObject*) PyType_FromModuleAndSpec(PyObject *, PyType_Spec *, PyObject *);
405
PyAPI_FUNC(PyObject *) PyType_GetModule(PyTypeObject *);
406
PyAPI_FUNC(void *) PyType_GetModuleState(PyTypeObject *);
407
#endif
408
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030B0000
409
PyAPI_FUNC(PyObject *) PyType_GetName(PyTypeObject *);
410
PyAPI_FUNC(PyObject *) PyType_GetQualName(PyTypeObject *);
411
#endif
412
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030D0000
413
PyAPI_FUNC(PyObject *) PyType_GetFullyQualifiedName(PyTypeObject *type);
414
PyAPI_FUNC(PyObject *) PyType_GetModuleName(PyTypeObject *type);
415
#endif
416
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030C0000
417
PyAPI_FUNC(PyObject *) PyType_FromMetaclass(PyTypeObject*, PyObject*, PyType_Spec*, PyObject*);
418
PyAPI_FUNC(void *) PyObject_GetTypeData(PyObject *obj, PyTypeObject *cls);
419
PyAPI_FUNC(Py_ssize_t) PyType_GetTypeDataSize(PyTypeObject *cls);
420
#endif
421
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030E0000
422
PyAPI_FUNC(int) PyType_GetBaseByToken(PyTypeObject *, void *, PyTypeObject **);
423
12
#define Py_TP_USE_SPEC NULL
424
#endif
425
426
/* Generic type check */
427
PyAPI_FUNC(int) PyType_IsSubtype(PyTypeObject *, PyTypeObject *);
428
429
611M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
611M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
611M
}
Unexecuted instantiation: bytesobject.c:PyObject_TypeCheck
Unexecuted instantiation: call.c:PyObject_TypeCheck
exceptions.c:PyObject_TypeCheck
Line
Count
Source
429
1.06M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
1.06M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
1.06M
}
Unexecuted instantiation: genericaliasobject.c:PyObject_TypeCheck
floatobject.c:PyObject_TypeCheck
Line
Count
Source
429
11.0M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
11.0M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
11.0M
}
Unexecuted instantiation: listobject.c:PyObject_TypeCheck
longobject.c:PyObject_TypeCheck
Line
Count
Source
429
2.49k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
2.49k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
2.49k
}
dictobject.c:PyObject_TypeCheck
Line
Count
Source
429
12.7M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
12.7M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
12.7M
}
Unexecuted instantiation: memoryobject.c:PyObject_TypeCheck
moduleobject.c:PyObject_TypeCheck
Line
Count
Source
429
20.0M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
20.0M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
20.0M
}
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: 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
429
70.4M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
70.4M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
70.4M
}
Unexecuted instantiation: typevarobject.c:PyObject_TypeCheck
Unexecuted instantiation: unicodeobject.c:PyObject_TypeCheck
Unexecuted instantiation: unicodectype.c:PyObject_TypeCheck
Unexecuted instantiation: unionobject.c:PyObject_TypeCheck
weakrefobject.c:PyObject_TypeCheck
Line
Count
Source
429
352
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
352
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
352
}
_warnings.c:PyObject_TypeCheck
Line
Count
Source
429
16.6k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
16.6k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
16.6k
}
bltinmodule.c:PyObject_TypeCheck
Line
Count
Source
429
8.41M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
8.41M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
8.41M
}
ceval.c:PyObject_TypeCheck
Line
Count
Source
429
16
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
16
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
16
}
codecs.c:PyObject_TypeCheck
Line
Count
Source
429
507k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
507k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
507k
}
codegen.c:PyObject_TypeCheck
Line
Count
Source
429
24
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
24
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
24
}
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
429
1.01M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
1.01M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
1.01M
}
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
429
957
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
957
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
957
}
importdl.c:PyObject_TypeCheck
Line
Count
Source
429
383
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
383
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
383
}
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
429
8.95k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
8.95k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
8.95k
}
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
429
568
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
568
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
568
}
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: formatter_unicode.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: 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
429
6
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
6
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
6
}
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
429
2.73k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
2.73k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
2.73k
}
Unexecuted instantiation: _abc.c:PyObject_TypeCheck
_functoolsmodule.c:PyObject_TypeCheck
Line
Count
Source
429
45
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
45
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
45
}
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
429
5.69M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
5.69M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
5.69M
}
Unexecuted instantiation: boolobject.c:PyObject_TypeCheck
Unexecuted instantiation: bytes_methods.c:PyObject_TypeCheck
bytearrayobject.c:PyObject_TypeCheck
Line
Count
Source
429
8.77k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
8.77k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
8.77k
}
Unexecuted instantiation: capsule.c:PyObject_TypeCheck
Unexecuted instantiation: cellobject.c:PyObject_TypeCheck
Unexecuted instantiation: classobject.c:PyObject_TypeCheck
Unexecuted instantiation: codeobject.c:PyObject_TypeCheck
Unexecuted instantiation: complexobject.c:PyObject_TypeCheck
descrobject.c:PyObject_TypeCheck
Line
Count
Source
429
480M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
480M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
480M
}
Unexecuted instantiation: enumobject.c:PyObject_TypeCheck
Unexecuted instantiation: genobject.c:PyObject_TypeCheck
Unexecuted instantiation: fileobject.c:PyObject_TypeCheck
Unexecuted instantiation: frameobject.c:PyObject_TypeCheck
Unexecuted instantiation: funcobject.c:PyObject_TypeCheck
Unexecuted instantiation: interpolationobject.c:PyObject_TypeCheck
Unexecuted instantiation: iterobject.c:PyObject_TypeCheck
Unexecuted instantiation: odictobject.c:PyObject_TypeCheck
methodobject.c:PyObject_TypeCheck
Line
Count
Source
429
3.91k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
3.91k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
3.91k
}
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
Unexecuted instantiation: structmember.c:PyObject_TypeCheck
pegen.c:PyObject_TypeCheck
Line
Count
Source
429
13.1k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
13.1k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
13.1k
}
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: state.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
432
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
433
612M
#  define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
434
#endif
435
436
PyAPI_DATA(PyTypeObject) PyType_Type; /* built-in 'type' */
437
PyAPI_DATA(PyTypeObject) PyBaseObject_Type; /* built-in 'object' */
438
PyAPI_DATA(PyTypeObject) PySuper_Type; /* built-in 'super' */
439
440
PyAPI_FUNC(unsigned long) PyType_GetFlags(PyTypeObject*);
441
442
PyAPI_FUNC(int) PyType_Ready(PyTypeObject *);
443
PyAPI_FUNC(PyObject *) PyType_GenericAlloc(PyTypeObject *, Py_ssize_t);
444
PyAPI_FUNC(PyObject *) PyType_GenericNew(PyTypeObject *,
445
                                               PyObject *, PyObject *);
446
PyAPI_FUNC(unsigned int) PyType_ClearCache(void);
447
PyAPI_FUNC(void) PyType_Modified(PyTypeObject *);
448
449
/* Generic operations on objects */
450
PyAPI_FUNC(PyObject *) PyObject_Repr(PyObject *);
451
PyAPI_FUNC(PyObject *) PyObject_Str(PyObject *);
452
PyAPI_FUNC(PyObject *) PyObject_ASCII(PyObject *);
453
PyAPI_FUNC(PyObject *) PyObject_Bytes(PyObject *);
454
PyAPI_FUNC(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int);
455
PyAPI_FUNC(int) PyObject_RichCompareBool(PyObject *, PyObject *, int);
456
PyAPI_FUNC(PyObject *) PyObject_GetAttrString(PyObject *, const char *);
457
PyAPI_FUNC(int) PyObject_SetAttrString(PyObject *, const char *, PyObject *);
458
PyAPI_FUNC(int) PyObject_DelAttrString(PyObject *v, const char *name);
459
PyAPI_FUNC(int) PyObject_HasAttrString(PyObject *, const char *);
460
PyAPI_FUNC(PyObject *) PyObject_GetAttr(PyObject *, PyObject *);
461
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
462
PyAPI_FUNC(int) PyObject_GetOptionalAttr(PyObject *, PyObject *, PyObject **);
463
PyAPI_FUNC(int) PyObject_GetOptionalAttrString(PyObject *, const char *, PyObject **);
464
#endif
465
PyAPI_FUNC(int) PyObject_SetAttr(PyObject *, PyObject *, PyObject *);
466
PyAPI_FUNC(int) PyObject_DelAttr(PyObject *v, PyObject *name);
467
PyAPI_FUNC(int) PyObject_HasAttr(PyObject *, PyObject *);
468
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
469
PyAPI_FUNC(int) PyObject_HasAttrWithError(PyObject *, PyObject *);
470
PyAPI_FUNC(int) PyObject_HasAttrStringWithError(PyObject *, const char *);
471
#endif
472
PyAPI_FUNC(PyObject *) PyObject_SelfIter(PyObject *);
473
PyAPI_FUNC(PyObject *) PyObject_GenericGetAttr(PyObject *, PyObject *);
474
PyAPI_FUNC(int) PyObject_GenericSetAttr(PyObject *, PyObject *, PyObject *);
475
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
476
PyAPI_FUNC(int) PyObject_GenericSetDict(PyObject *, PyObject *, void *);
477
#endif
478
PyAPI_FUNC(Py_hash_t) PyObject_Hash(PyObject *);
479
PyAPI_FUNC(Py_hash_t) PyObject_HashNotImplemented(PyObject *);
480
PyAPI_FUNC(int) PyObject_IsTrue(PyObject *);
481
PyAPI_FUNC(int) PyObject_Not(PyObject *);
482
PyAPI_FUNC(int) PyCallable_Check(PyObject *);
483
PyAPI_FUNC(void) PyObject_ClearWeakRefs(PyObject *);
484
485
/* PyObject_Dir(obj) acts like Python builtins.dir(obj), returning a
486
   list of strings.  PyObject_Dir(NULL) is like builtins.dir(),
487
   returning the names of the current locals.  In this case, if there are
488
   no current locals, NULL is returned, and PyErr_Occurred() is false.
489
*/
490
PyAPI_FUNC(PyObject *) PyObject_Dir(PyObject *);
491
492
/* Helpers for printing recursive container types */
493
PyAPI_FUNC(int) Py_ReprEnter(PyObject *);
494
PyAPI_FUNC(void) Py_ReprLeave(PyObject *);
495
496
/* Flag bits for printing: */
497
0
#define Py_PRINT_RAW    1       /* No string quotes etc. */
498
499
/*
500
Type flags (tp_flags)
501
502
These flags are used to change expected features and behavior for a
503
particular type.
504
505
Arbitration of the flag bit positions will need to be coordinated among
506
all extension writers who publicly release their extensions (this will
507
be fewer than you might expect!).
508
509
Most flags were removed as of Python 3.0 to make room for new flags.  (Some
510
flags are not for backwards compatibility but to indicate the presence of an
511
optional feature; these flags remain of course.)
512
513
Type definitions should use Py_TPFLAGS_DEFAULT for their tp_flags value.
514
515
Code can use PyType_HasFeature(type_ob, flag_value) to test whether the
516
given type object has a specified feature.
517
*/
518
519
#ifndef Py_LIMITED_API
520
521
/* Track types initialized using _PyStaticType_InitBuiltin(). */
522
607M
#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
523
524
/* The values array is placed inline directly after the rest of
525
 * the object. Implies Py_TPFLAGS_HAVE_GC.
526
 */
527
863M
#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
528
529
/* Placement of weakref pointers are managed by the VM, not by the type.
530
 * The VM will automatically set tp_weaklistoffset.
531
 */
532
874M
#define Py_TPFLAGS_MANAGED_WEAKREF (1 << 3)
533
534
/* Placement of dict (and values) pointers are managed by the VM, not by the type.
535
 * The VM will automatically set tp_dictoffset. Implies Py_TPFLAGS_HAVE_GC.
536
 */
537
1.23G
#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
538
539
/* Type has dictionary or weakref pointers that are managed by VM and has
540
 * to allocate space to store these.
541
 */
542
874M
#define Py_TPFLAGS_PREHEADER (Py_TPFLAGS_MANAGED_WEAKREF | Py_TPFLAGS_MANAGED_DICT)
543
544
/* Set if instances of the type object are treated as sequences for pattern matching */
545
2.57M
#define Py_TPFLAGS_SEQUENCE (1 << 5)
546
/* Set if instances of the type object are treated as mappings for pattern matching */
547
2.57M
#define Py_TPFLAGS_MAPPING (1 << 6)
548
#endif
549
550
/* Disallow creating instances of the type: set tp_new to NULL and don't create
551
 * the "__new__" key in the type dictionary. */
552
264k
#define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7)
553
554
/* Set if the type object is immutable: type attributes cannot be set nor deleted */
555
711k
#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
556
557
/* Set if the type object is dynamically allocated */
558
433M
#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
559
560
/* Set if the type allows subclassing */
561
1.03M
#define Py_TPFLAGS_BASETYPE (1UL << 10)
562
563
/* Set if the type implements the vectorcall protocol (PEP 590) */
564
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030C0000
565
579M
#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
566
#ifndef Py_LIMITED_API
567
// Backwards compatibility alias for API that was provisional in Python 3.8
568
#define _Py_TPFLAGS_HAVE_VECTORCALL Py_TPFLAGS_HAVE_VECTORCALL
569
#endif
570
#endif
571
572
/* Set if the type is 'ready' -- fully initialized */
573
25.0M
#define Py_TPFLAGS_READY (1UL << 12)
574
575
/* Set while the type is being 'readied', to prevent recursive ready calls */
576
520k
#define Py_TPFLAGS_READYING (1UL << 13)
577
578
/* Objects support garbage collection (see objimpl.h) */
579
5.41G
#define Py_TPFLAGS_HAVE_GC (1UL << 14)
580
581
/* These two bits are preserved for Stackless Python, next after this is 17 */
582
#ifdef STACKLESS
583
#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION (3UL << 15)
584
#else
585
259k
#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION 0
586
#endif
587
588
/* Objects behave like an unbound method */
589
96.4M
#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
590
591
/* Unused. Legacy flag */
592
#define Py_TPFLAGS_VALID_VERSION_TAG  (1UL << 19)
593
594
/* Type is abstract and cannot be instantiated */
595
27.9M
#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
596
597
// This undocumented flag gives certain built-ins their unique pattern-matching
598
// behavior, which allows a single positional subpattern to match against the
599
// subject itself (rather than a mapped attribute on it):
600
517k
#define _Py_TPFLAGS_MATCH_SELF (1UL << 22)
601
602
/* Items (ob_size*tp_itemsize) are found at the end of an instance's memory */
603
955k
#define Py_TPFLAGS_ITEMS_AT_END (1UL << 23)
604
605
/* These flags are used to determine if a type is a subclass. */
606
143
#define Py_TPFLAGS_LONG_SUBCLASS        (1UL << 24)
607
116
#define Py_TPFLAGS_LIST_SUBCLASS        (1UL << 25)
608
430
#define Py_TPFLAGS_TUPLE_SUBCLASS       (1UL << 26)
609
0
#define Py_TPFLAGS_BYTES_SUBCLASS       (1UL << 27)
610
6.49M
#define Py_TPFLAGS_UNICODE_SUBCLASS     (1UL << 28)
611
78
#define Py_TPFLAGS_DICT_SUBCLASS        (1UL << 29)
612
1.57k
#define Py_TPFLAGS_BASE_EXC_SUBCLASS    (1UL << 30)
613
28
#define Py_TPFLAGS_TYPE_SUBCLASS        (1UL << 31)
614
615
259k
#define Py_TPFLAGS_DEFAULT  ( \
616
259k
                 Py_TPFLAGS_HAVE_STACKLESS_EXTENSION | \
617
259k
                0)
618
619
/* NOTE: Some of the following flags reuse lower bits (removed as part of the
620
 * Python 3.0 transition). */
621
622
/* The following flags are kept for compatibility; in previous
623
 * versions they indicated presence of newer tp_* fields on the
624
 * type struct.
625
 * Starting with 3.8, binary compatibility of C extensions across
626
 * feature releases of Python is not supported anymore (except when
627
 * using the stable ABI, in which all classes are created dynamically,
628
 * using the interpreter's memory layout.)
629
 * Note that older extensions using the stable ABI set these flags,
630
 * so the bits must not be repurposed.
631
 */
632
#define Py_TPFLAGS_HAVE_FINALIZE (1UL << 0)
633
#define Py_TPFLAGS_HAVE_VERSION_TAG   (1UL << 18)
634
635
// Flag values for ob_flags (16 bits available, if SIZEOF_VOID_P > 4).
636
256M
#define _Py_IMMORTAL_FLAGS (1 << 0)
637
255M
#define _Py_STATICALLY_ALLOCATED_FLAG (1 << 2)
638
#if defined(Py_GIL_DISABLED) && defined(Py_DEBUG)
639
#define _Py_TYPE_REVEALED_FLAG (1 << 3)
640
#endif
641
642
#define Py_CONSTANT_NONE 0
643
#define Py_CONSTANT_FALSE 1
644
#define Py_CONSTANT_TRUE 2
645
#define Py_CONSTANT_ELLIPSIS 3
646
#define Py_CONSTANT_NOT_IMPLEMENTED 4
647
16
#define Py_CONSTANT_ZERO 5
648
16
#define Py_CONSTANT_ONE 6
649
195k
#define Py_CONSTANT_EMPTY_STR 7
650
4.17M
#define Py_CONSTANT_EMPTY_BYTES 8
651
16
#define Py_CONSTANT_EMPTY_TUPLE 9
652
653
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
654
PyAPI_FUNC(PyObject*) Py_GetConstant(unsigned int constant_id);
655
PyAPI_FUNC(PyObject*) Py_GetConstantBorrowed(unsigned int constant_id);
656
#endif
657
658
659
/*
660
_Py_NoneStruct is an object of undefined type which can be used in contexts
661
where NULL (nil) is not suitable (since NULL often means 'error').
662
*/
663
PyAPI_DATA(PyObject) _Py_NoneStruct; /* Don't use this directly */
664
665
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030D0000
666
#  define Py_None Py_GetConstantBorrowed(Py_CONSTANT_NONE)
667
#else
668
2.17G
#  define Py_None (&_Py_NoneStruct)
669
#endif
670
671
// Test if an object is the None singleton, the same as "x is None" in Python.
672
PyAPI_FUNC(int) Py_IsNone(PyObject *x);
673
150M
#define Py_IsNone(x) Py_Is((x), Py_None)
674
675
/* Macro for returning Py_None from a function.
676
 * Only treat Py_None as immortal in the limited C API 3.12 and newer. */
677
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 < 0x030c0000
678
#  define Py_RETURN_NONE return Py_NewRef(Py_None)
679
#else
680
97.5M
#  define Py_RETURN_NONE return Py_None
681
#endif
682
683
/*
684
Py_NotImplemented is a singleton used to signal that an operation is
685
not implemented for a given type combination.
686
*/
687
PyAPI_DATA(PyObject) _Py_NotImplementedStruct; /* Don't use this directly */
688
689
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030D0000
690
#  define Py_NotImplemented Py_GetConstantBorrowed(Py_CONSTANT_NOT_IMPLEMENTED)
691
#else
692
277M
#  define Py_NotImplemented (&_Py_NotImplementedStruct)
693
#endif
694
695
/* Macro for returning Py_NotImplemented from a function */
696
20.7M
#define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
697
698
/* Rich comparison opcodes */
699
61.0M
#define Py_LT 0
700
634k
#define Py_LE 1
701
323M
#define Py_EQ 2
702
35.3M
#define Py_NE 3
703
1.76M
#define Py_GT 4
704
1.77k
#define Py_GE 5
705
706
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030A0000
707
/* Result of calling PyIter_Send */
708
typedef enum {
709
    PYGEN_RETURN = 0,
710
    PYGEN_ERROR = -1,
711
    PYGEN_NEXT = 1
712
} PySendResult;
713
#endif
714
715
/*
716
 * Macro for implementing rich comparisons
717
 *
718
 * Needs to be a macro because any C-comparable type can be used.
719
 */
720
#define Py_RETURN_RICHCOMPARE(val1, val2, op)                               \
721
150M
    do {                                                                    \
722
150M
        switch (op) {                                                       \
723
114M
        case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
724
114M
        case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
725
33.9M
        case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
726
33.9M
        case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
727
1.12M
        case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
728
632k
        case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
729
92
        default:                                                            \
730
0
            Py_UNREACHABLE();                                               \
731
150M
        }                                                                   \
732
150M
    } while (0)
733
734
735
/*
736
More conventions
737
================
738
739
Argument Checking
740
-----------------
741
742
Functions that take objects as arguments normally don't check for nil
743
arguments, but they do check the type of the argument, and return an
744
error if the function doesn't apply to the type.
745
746
Failure Modes
747
-------------
748
749
Functions may fail for a variety of reasons, including running out of
750
memory.  This is communicated to the caller in two ways: an error string
751
is set (see errors.h), and the function result differs: functions that
752
normally return a pointer return NULL for failure, functions returning
753
an integer return -1 (which could be a legal return value too!), and
754
other functions return 0 for success and -1 for failure.
755
Callers should always check for errors before using the result.  If
756
an error was set, the caller must either explicitly clear it, or pass
757
the error on to its caller.
758
759
Reference Counts
760
----------------
761
762
It takes a while to get used to the proper usage of reference counts.
763
764
Functions that create an object set the reference count to 1; such new
765
objects must be stored somewhere or destroyed again with Py_DECREF().
766
Some functions that 'store' objects, such as PyTuple_SetItem() and
767
PyList_SetItem(),
768
don't increment the reference count of the object, since the most
769
frequent use is to store a fresh object.  Functions that 'retrieve'
770
objects, such as PyTuple_GetItem() and PyDict_GetItemString(), also
771
don't increment
772
the reference count, since most frequently the object is only looked at
773
quickly.  Thus, to retrieve an object and store it again, the caller
774
must call Py_INCREF() explicitly.
775
776
NOTE: functions that 'consume' a reference count, like
777
PyList_SetItem(), consume the reference even if the object wasn't
778
successfully stored, to simplify error handling.
779
780
It seems attractive to make other functions that take an object as
781
argument consume a reference count; however, this may quickly get
782
confusing (even the current practice is already confusing).  Consider
783
it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at
784
times.
785
*/
786
787
#ifndef Py_LIMITED_API
788
#  define Py_CPYTHON_OBJECT_H
789
#  include "cpython/object.h"
790
#  undef Py_CPYTHON_OBJECT_H
791
#endif
792
793
794
static inline int
795
PyType_HasFeature(PyTypeObject *type, unsigned long feature)
796
5.76G
{
797
5.76G
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
    flags = type->tp_flags;
803
#endif
804
5.76G
    return ((flags & feature) != 0);
805
5.76G
}
bytesobject.c:PyType_HasFeature
Line
Count
Source
796
13.3M
{
797
13.3M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
13.3M
    flags = type->tp_flags;
803
13.3M
#endif
804
13.3M
    return ((flags & feature) != 0);
805
13.3M
}
call.c:PyType_HasFeature
Line
Count
Source
796
479M
{
797
479M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
479M
    flags = type->tp_flags;
803
479M
#endif
804
479M
    return ((flags & feature) != 0);
805
479M
}
exceptions.c:PyType_HasFeature
Line
Count
Source
796
679k
{
797
679k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
679k
    flags = type->tp_flags;
803
679k
#endif
804
679k
    return ((flags & feature) != 0);
805
679k
}
genericaliasobject.c:PyType_HasFeature
Line
Count
Source
796
862
{
797
862
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
862
    flags = type->tp_flags;
803
862
#endif
804
862
    return ((flags & feature) != 0);
805
862
}
floatobject.c:PyType_HasFeature
Line
Count
Source
796
1.04M
{
797
1.04M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
1.04M
    flags = type->tp_flags;
803
1.04M
#endif
804
1.04M
    return ((flags & feature) != 0);
805
1.04M
}
listobject.c:PyType_HasFeature
Line
Count
Source
796
241M
{
797
241M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
241M
    flags = type->tp_flags;
803
241M
#endif
804
241M
    return ((flags & feature) != 0);
805
241M
}
longobject.c:PyType_HasFeature
Line
Count
Source
796
856M
{
797
856M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
856M
    flags = type->tp_flags;
803
856M
#endif
804
856M
    return ((flags & feature) != 0);
805
856M
}
dictobject.c:PyType_HasFeature
Line
Count
Source
796
314M
{
797
314M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
314M
    flags = type->tp_flags;
803
314M
#endif
804
314M
    return ((flags & feature) != 0);
805
314M
}
memoryobject.c:PyType_HasFeature
Line
Count
Source
796
4
{
797
4
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
4
    flags = type->tp_flags;
803
4
#endif
804
4
    return ((flags & feature) != 0);
805
4
}
moduleobject.c:PyType_HasFeature
Line
Count
Source
796
2.97k
{
797
2.97k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
2.97k
    flags = type->tp_flags;
803
2.97k
#endif
804
2.97k
    return ((flags & feature) != 0);
805
2.97k
}
object.c:PyType_HasFeature
Line
Count
Source
796
688M
{
797
688M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
688M
    flags = type->tp_flags;
803
688M
#endif
804
688M
    return ((flags & feature) != 0);
805
688M
}
Unexecuted instantiation: obmalloc.c:PyType_HasFeature
Unexecuted instantiation: picklebufobject.c:PyType_HasFeature
Unexecuted instantiation: rangeobject.c:PyType_HasFeature
Unexecuted instantiation: setobject.c:PyType_HasFeature
Unexecuted instantiation: sliceobject.c:PyType_HasFeature
Unexecuted instantiation: structseq.c:PyType_HasFeature
Unexecuted instantiation: templateobject.c:PyType_HasFeature
tupleobject.c:PyType_HasFeature
Line
Count
Source
796
67.7M
{
797
67.7M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
67.7M
    flags = type->tp_flags;
803
67.7M
#endif
804
67.7M
    return ((flags & feature) != 0);
805
67.7M
}
typeobject.c:PyType_HasFeature
Line
Count
Source
796
245M
{
797
245M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
245M
    flags = type->tp_flags;
803
245M
#endif
804
245M
    return ((flags & feature) != 0);
805
245M
}
Unexecuted instantiation: typevarobject.c:PyType_HasFeature
unicodeobject.c:PyType_HasFeature
Line
Count
Source
796
1.38G
{
797
1.38G
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
1.38G
    flags = type->tp_flags;
803
1.38G
#endif
804
1.38G
    return ((flags & feature) != 0);
805
1.38G
}
Unexecuted instantiation: unicodectype.c:PyType_HasFeature
unionobject.c:PyType_HasFeature
Line
Count
Source
796
475
{
797
475
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
475
    flags = type->tp_flags;
803
475
#endif
804
475
    return ((flags & feature) != 0);
805
475
}
weakrefobject.c:PyType_HasFeature
Line
Count
Source
796
35.8M
{
797
35.8M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
35.8M
    flags = type->tp_flags;
803
35.8M
#endif
804
35.8M
    return ((flags & feature) != 0);
805
35.8M
}
_warnings.c:PyType_HasFeature
Line
Count
Source
796
56.6k
{
797
56.6k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
56.6k
    flags = type->tp_flags;
803
56.6k
#endif
804
56.6k
    return ((flags & feature) != 0);
805
56.6k
}
bltinmodule.c:PyType_HasFeature
Line
Count
Source
796
67.2M
{
797
67.2M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
67.2M
    flags = type->tp_flags;
803
67.2M
#endif
804
67.2M
    return ((flags & feature) != 0);
805
67.2M
}
ceval.c:PyType_HasFeature
Line
Count
Source
796
217M
{
797
217M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
217M
    flags = type->tp_flags;
803
217M
#endif
804
217M
    return ((flags & feature) != 0);
805
217M
}
codecs.c:PyType_HasFeature
Line
Count
Source
796
1.16M
{
797
1.16M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
1.16M
    flags = type->tp_flags;
803
1.16M
#endif
804
1.16M
    return ((flags & feature) != 0);
805
1.16M
}
codegen.c:PyType_HasFeature
Line
Count
Source
796
1.35k
{
797
1.35k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
1.35k
    flags = type->tp_flags;
803
1.35k
#endif
804
1.35k
    return ((flags & feature) != 0);
805
1.35k
}
Unexecuted instantiation: compile.c:PyType_HasFeature
context.c:PyType_HasFeature
Line
Count
Source
796
24
{
797
24
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
24
    flags = type->tp_flags;
803
24
#endif
804
24
    return ((flags & feature) != 0);
805
24
}
errors.c:PyType_HasFeature
Line
Count
Source
796
321M
{
797
321M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
321M
    flags = type->tp_flags;
803
321M
#endif
804
321M
    return ((flags & feature) != 0);
805
321M
}
flowgraph.c:PyType_HasFeature
Line
Count
Source
796
182
{
797
182
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
182
    flags = type->tp_flags;
803
182
#endif
804
182
    return ((flags & feature) != 0);
805
182
}
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
796
3.04M
{
797
3.04M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
3.04M
    flags = type->tp_flags;
803
3.04M
#endif
804
3.04M
    return ((flags & feature) != 0);
805
3.04M
}
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
796
30.1k
{
797
30.1k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
30.1k
    flags = type->tp_flags;
803
30.1k
#endif
804
30.1k
    return ((flags & feature) != 0);
805
30.1k
}
importdl.c:PyType_HasFeature
Line
Count
Source
796
146
{
797
146
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
146
    flags = type->tp_flags;
803
146
#endif
804
146
    return ((flags & feature) != 0);
805
146
}
initconfig.c:PyType_HasFeature
Line
Count
Source
796
320
{
797
320
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
320
    flags = type->tp_flags;
803
320
#endif
804
320
    return ((flags & feature) != 0);
805
320
}
Unexecuted instantiation: instrumentation.c:PyType_HasFeature
Unexecuted instantiation: instruction_sequence.c:PyType_HasFeature
intrinsics.c:PyType_HasFeature
Line
Count
Source
796
14.5k
{
797
14.5k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
14.5k
    flags = type->tp_flags;
803
14.5k
#endif
804
14.5k
    return ((flags & feature) != 0);
805
14.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
796
16
{
797
16
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
16
    flags = type->tp_flags;
803
16
#endif
804
16
    return ((flags & feature) != 0);
805
16
}
Unexecuted instantiation: pymath.c:PyType_HasFeature
Unexecuted instantiation: pystate.c:PyType_HasFeature
pythonrun.c:PyType_HasFeature
Line
Count
Source
796
44.8k
{
797
44.8k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
44.8k
    flags = type->tp_flags;
803
44.8k
#endif
804
44.8k
    return ((flags & feature) != 0);
805
44.8k
}
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
796
1.26M
{
797
1.26M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
1.26M
    flags = type->tp_flags;
803
1.26M
#endif
804
1.26M
    return ((flags & feature) != 0);
805
1.26M
}
symtable.c:PyType_HasFeature
Line
Count
Source
796
124k
{
797
124k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
124k
    flags = type->tp_flags;
803
124k
#endif
804
124k
    return ((flags & feature) != 0);
805
124k
}
sysmodule.c:PyType_HasFeature
Line
Count
Source
796
666
{
797
666
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
666
    flags = type->tp_flags;
803
666
#endif
804
666
    return ((flags & feature) != 0);
805
666
}
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: formatter_unicode.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: 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
796
50.7k
{
797
50.7k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
50.7k
    flags = type->tp_flags;
803
50.7k
#endif
804
50.7k
    return ((flags & feature) != 0);
805
50.7k
}
Unexecuted instantiation: signalmodule.c:PyType_HasFeature
Unexecuted instantiation: _tracemalloc.c:PyType_HasFeature
Unexecuted instantiation: _suggestions.c:PyType_HasFeature
Unexecuted instantiation: _datetimemodule.c:PyType_HasFeature
_codecsmodule.c:PyType_HasFeature
Line
Count
Source
796
883k
{
797
883k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
883k
    flags = type->tp_flags;
803
883k
#endif
804
883k
    return ((flags & feature) != 0);
805
883k
}
Unexecuted instantiation: _collectionsmodule.c:PyType_HasFeature
Unexecuted instantiation: errnomodule.c:PyType_HasFeature
_iomodule.c:PyType_HasFeature
Line
Count
Source
796
3.05k
{
797
3.05k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
3.05k
    flags = type->tp_flags;
803
3.05k
#endif
804
3.05k
    return ((flags & feature) != 0);
805
3.05k
}
Unexecuted instantiation: iobase.c:PyType_HasFeature
fileio.c:PyType_HasFeature
Line
Count
Source
796
1.28k
{
797
1.28k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
1.28k
    flags = type->tp_flags;
803
1.28k
#endif
804
1.28k
    return ((flags & feature) != 0);
805
1.28k
}
Unexecuted instantiation: bytesio.c:PyType_HasFeature
bufferedio.c:PyType_HasFeature
Line
Count
Source
796
2.00k
{
797
2.00k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
2.00k
    flags = type->tp_flags;
803
2.00k
#endif
804
2.00k
    return ((flags & feature) != 0);
805
2.00k
}
textio.c:PyType_HasFeature
Line
Count
Source
796
63.2k
{
797
63.2k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
63.2k
    flags = type->tp_flags;
803
63.2k
#endif
804
63.2k
    return ((flags & feature) != 0);
805
63.2k
}
stringio.c:PyType_HasFeature
Line
Count
Source
796
94.8k
{
797
94.8k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
94.8k
    flags = type->tp_flags;
803
94.8k
#endif
804
94.8k
    return ((flags & feature) != 0);
805
94.8k
}
Unexecuted instantiation: itertoolsmodule.c:PyType_HasFeature
sre.c:PyType_HasFeature
Line
Count
Source
796
195M
{
797
195M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
195M
    flags = type->tp_flags;
803
195M
#endif
804
195M
    return ((flags & feature) != 0);
805
195M
}
Unexecuted instantiation: _sysconfig.c:PyType_HasFeature
Unexecuted instantiation: _threadmodule.c:PyType_HasFeature
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
796
2.73k
{
797
2.73k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
2.73k
    flags = type->tp_flags;
803
2.73k
#endif
804
2.73k
    return ((flags & feature) != 0);
805
2.73k
}
_abc.c:PyType_HasFeature
Line
Count
Source
796
28.4k
{
797
28.4k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
28.4k
    flags = type->tp_flags;
803
28.4k
#endif
804
28.4k
    return ((flags & feature) != 0);
805
28.4k
}
_functoolsmodule.c:PyType_HasFeature
Line
Count
Source
796
33.9k
{
797
33.9k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
33.9k
    flags = type->tp_flags;
803
33.9k
#endif
804
33.9k
    return ((flags & feature) != 0);
805
33.9k
}
Unexecuted instantiation: _localemodule.c:PyType_HasFeature
Unexecuted instantiation: _opcode.c:PyType_HasFeature
Unexecuted instantiation: _operator.c:PyType_HasFeature
_stat.c:PyType_HasFeature
Line
Count
Source
796
16
{
797
16
    unsigned long flags;
798
16
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
16
    flags = PyType_GetFlags(type);
801
#else
802
    flags = type->tp_flags;
803
#endif
804
16
    return ((flags & feature) != 0);
805
16
}
Unexecuted instantiation: symtablemodule.c:PyType_HasFeature
Unexecuted instantiation: pwdmodule.c:PyType_HasFeature
getpath.c:PyType_HasFeature
Line
Count
Source
796
432
{
797
432
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
432
    flags = type->tp_flags;
803
432
#endif
804
432
    return ((flags & feature) != 0);
805
432
}
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
796
561M
{
797
561M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
561M
    flags = type->tp_flags;
803
561M
#endif
804
561M
    return ((flags & feature) != 0);
805
561M
}
Unexecuted instantiation: boolobject.c:PyType_HasFeature
bytes_methods.c:PyType_HasFeature
Line
Count
Source
796
2.20M
{
797
2.20M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
2.20M
    flags = type->tp_flags;
803
2.20M
#endif
804
2.20M
    return ((flags & feature) != 0);
805
2.20M
}
bytearrayobject.c:PyType_HasFeature
Line
Count
Source
796
1.57M
{
797
1.57M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
1.57M
    flags = type->tp_flags;
803
1.57M
#endif
804
1.57M
    return ((flags & feature) != 0);
805
1.57M
}
Unexecuted instantiation: capsule.c:PyType_HasFeature
Unexecuted instantiation: cellobject.c:PyType_HasFeature
classobject.c:PyType_HasFeature
Line
Count
Source
796
18.7M
{
797
18.7M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
18.7M
    flags = type->tp_flags;
803
18.7M
#endif
804
18.7M
    return ((flags & feature) != 0);
805
18.7M
}
codeobject.c:PyType_HasFeature
Line
Count
Source
796
328k
{
797
328k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
328k
    flags = type->tp_flags;
803
328k
#endif
804
328k
    return ((flags & feature) != 0);
805
328k
}
Unexecuted instantiation: complexobject.c:PyType_HasFeature
descrobject.c:PyType_HasFeature
Line
Count
Source
796
6.06M
{
797
6.06M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
6.06M
    flags = type->tp_flags;
803
6.06M
#endif
804
6.06M
    return ((flags & feature) != 0);
805
6.06M
}
enumobject.c:PyType_HasFeature
Line
Count
Source
796
36.3M
{
797
36.3M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
36.3M
    flags = type->tp_flags;
803
36.3M
#endif
804
36.3M
    return ((flags & feature) != 0);
805
36.3M
}
genobject.c:PyType_HasFeature
Line
Count
Source
796
4.10k
{
797
4.10k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
4.10k
    flags = type->tp_flags;
803
4.10k
#endif
804
4.10k
    return ((flags & feature) != 0);
805
4.10k
}
fileobject.c:PyType_HasFeature
Line
Count
Source
796
1.00k
{
797
1.00k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
1.00k
    flags = type->tp_flags;
803
1.00k
#endif
804
1.00k
    return ((flags & feature) != 0);
805
1.00k
}
Unexecuted instantiation: frameobject.c:PyType_HasFeature
funcobject.c:PyType_HasFeature
Line
Count
Source
796
28.3k
{
797
28.3k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
28.3k
    flags = type->tp_flags;
803
28.3k
#endif
804
28.3k
    return ((flags & feature) != 0);
805
28.3k
}
Unexecuted instantiation: interpolationobject.c:PyType_HasFeature
iterobject.c:PyType_HasFeature
Line
Count
Source
796
3.07M
{
797
3.07M
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
3.07M
    flags = type->tp_flags;
803
3.07M
#endif
804
3.07M
    return ((flags & feature) != 0);
805
3.07M
}
Unexecuted instantiation: odictobject.c:PyType_HasFeature
Unexecuted instantiation: methodobject.c:PyType_HasFeature
Unexecuted instantiation: namespaceobject.c:PyType_HasFeature
Unexecuted instantiation: _contextvars.c:PyType_HasFeature
Unexecuted instantiation: Python-ast.c:PyType_HasFeature
Unexecuted instantiation: Python-tokenize.c:PyType_HasFeature
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
796
495
{
797
495
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
495
    flags = type->tp_flags;
803
495
#endif
804
495
    return ((flags & feature) != 0);
805
495
}
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
Unexecuted instantiation: structmember.c:PyType_HasFeature
pegen.c:PyType_HasFeature
Line
Count
Source
796
55.4k
{
797
55.4k
    unsigned long flags;
798
#ifdef Py_LIMITED_API
799
    // PyTypeObject is opaque in the limited C API
800
    flags = PyType_GetFlags(type);
801
#else
802
55.4k
    flags = type->tp_flags;
803
55.4k
#endif
804
55.4k
    return ((flags & feature) != 0);
805
55.4k
}
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: state.c:PyType_HasFeature
Unexecuted instantiation: readline_tokenizer.c:PyType_HasFeature
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
806
807
5.52G
#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
808
809
367M
static inline int PyType_Check(PyObject *op) {
810
367M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
367M
}
Unexecuted instantiation: bytesobject.c:PyType_Check
Unexecuted instantiation: call.c:PyType_Check
Unexecuted instantiation: exceptions.c:PyType_Check
Unexecuted instantiation: genericaliasobject.c:PyType_Check
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: 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
809
68.7M
static inline int PyType_Check(PyObject *op) {
810
68.7M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
68.7M
}
Unexecuted instantiation: typevarobject.c:PyType_Check
Unexecuted instantiation: unicodeobject.c:PyType_Check
Unexecuted instantiation: unicodectype.c:PyType_Check
unionobject.c:PyType_Check
Line
Count
Source
809
475
static inline int PyType_Check(PyObject *op) {
810
475
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
475
}
weakrefobject.c:PyType_Check
Line
Count
Source
809
35.8M
static inline int PyType_Check(PyObject *op) {
810
35.8M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
35.8M
}
Unexecuted instantiation: _warnings.c:PyType_Check
bltinmodule.c:PyType_Check
Line
Count
Source
809
8.99k
static inline int PyType_Check(PyObject *op) {
810
8.99k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
8.99k
}
ceval.c:PyType_Check
Line
Count
Source
809
139M
static inline int PyType_Check(PyObject *op) {
810
139M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
139M
}
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
809
87.8M
static inline int PyType_Check(PyObject *op) {
810
87.8M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
87.8M
}
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
809
1.19M
static inline int PyType_Check(PyObject *op) {
810
1.19M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
1.19M
}
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: formatter_unicode.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: 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
809
2.27k
static inline int PyType_Check(PyObject *op) {
810
2.27k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
2.27k
}
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
809
28.3M
static inline int PyType_Check(PyObject *op) {
810
28.3M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
28.3M
}
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
809
6.05M
static inline int PyType_Check(PyObject *op) {
810
6.05M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
6.05M
}
Unexecuted instantiation: enumobject.c:PyType_Check
genobject.c:PyType_Check
Line
Count
Source
809
2.05k
static inline int PyType_Check(PyObject *op) {
810
2.05k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
2.05k
}
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: odictobject.c:PyType_Check
Unexecuted instantiation: methodobject.c:PyType_Check
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: structmember.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: state.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
812
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
813
577M
#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
814
#endif
815
816
#define _PyType_CAST(op) \
817
321M
    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
818
819
16.2M
static inline int PyType_CheckExact(PyObject *op) {
820
16.2M
    return Py_IS_TYPE(op, &PyType_Type);
821
16.2M
}
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: 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: unicodeobject.c:PyType_CheckExact
Unexecuted instantiation: unicodectype.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: 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: formatter_unicode.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: 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
819
16.2M
static inline int PyType_CheckExact(PyObject *op) {
820
16.2M
    return Py_IS_TYPE(op, &PyType_Type);
821
16.2M
}
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: 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: structmember.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: state.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
822
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
823
16.2M
#  define PyType_CheckExact(op) PyType_CheckExact(_PyObject_CAST(op))
824
#endif
825
826
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
827
PyAPI_FUNC(PyObject *) PyType_GetModuleByDef(PyTypeObject *, PyModuleDef *);
828
#endif
829
830
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030e0000
831
PyAPI_FUNC(int) PyType_Freeze(PyTypeObject *type);
832
#endif
833
834
#ifdef __cplusplus
835
}
836
#endif
837
#endif   // !Py_OBJECT_H