Coverage Report

Created: 2025-08-29 06:15

/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
260M
    {                               \
89
260M
        { _Py_STATIC_IMMORTAL_INITIAL_REFCNT },    \
90
260M
        (type)                      \
91
260M
    },
92
#endif
93
94
#define PyVarObject_HEAD_INIT(type, size) \
95
260M
    {                                     \
96
260M
        PyObject_HEAD_INIT(type)          \
97
260M
        (size)                            \
98
260M
    },
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
156G
#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.47G
#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
213M
#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
37.2G
    {
275
37.2G
        return ob->ob_type;
276
37.2G
    }
bytesobject.c:_Py_TYPE
Line
Count
Source
274
25.6M
    {
275
25.6M
        return ob->ob_type;
276
25.6M
    }
call.c:_Py_TYPE
Line
Count
Source
274
606M
    {
275
606M
        return ob->ob_type;
276
606M
    }
exceptions.c:_Py_TYPE
Line
Count
Source
274
70.3M
    {
275
70.3M
        return ob->ob_type;
276
70.3M
    }
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
17.1M
    {
275
17.1M
        return ob->ob_type;
276
17.1M
    }
listobject.c:_Py_TYPE
Line
Count
Source
274
693M
    {
275
693M
        return ob->ob_type;
276
693M
    }
longobject.c:_Py_TYPE
Line
Count
Source
274
1.75G
    {
275
1.75G
        return ob->ob_type;
276
1.75G
    }
dictobject.c:_Py_TYPE
Line
Count
Source
274
3.95G
    {
275
3.95G
        return ob->ob_type;
276
3.95G
    }
memoryobject.c:_Py_TYPE
Line
Count
Source
274
2.30k
    {
275
2.30k
        return ob->ob_type;
276
2.30k
    }
moduleobject.c:_Py_TYPE
Line
Count
Source
274
23.3M
    {
275
23.3M
        return ob->ob_type;
276
23.3M
    }
object.c:_Py_TYPE
Line
Count
Source
274
7.24G
    {
275
7.24G
        return ob->ob_type;
276
7.24G
    }
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
50.7M
    {
275
50.7M
        return ob->ob_type;
276
50.7M
    }
sliceobject.c:_Py_TYPE
Line
Count
Source
274
1.28k
    {
275
1.28k
        return ob->ob_type;
276
1.28k
    }
structseq.c:_Py_TYPE
Line
Count
Source
274
9.50k
    {
275
9.50k
        return ob->ob_type;
276
9.50k
    }
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
606M
    {
275
606M
        return ob->ob_type;
276
606M
    }
typeobject.c:_Py_TYPE
Line
Count
Source
274
1.03G
    {
275
1.03G
        return ob->ob_type;
276
1.03G
    }
Unexecuted instantiation: typevarobject.c:_Py_TYPE
unicodeobject.c:_Py_TYPE
Line
Count
Source
274
2.67G
    {
275
2.67G
        return ob->ob_type;
276
2.67G
    }
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
109M
    {
275
109M
        return ob->ob_type;
276
109M
    }
_warnings.c:_Py_TYPE
Line
Count
Source
274
90.4k
    {
275
90.4k
        return ob->ob_type;
276
90.4k
    }
bltinmodule.c:_Py_TYPE
Line
Count
Source
274
193M
    {
275
193M
        return ob->ob_type;
276
193M
    }
ceval.c:_Py_TYPE
Line
Count
Source
274
12.4G
    {
275
12.4G
        return ob->ob_type;
276
12.4G
    }
codecs.c:_Py_TYPE
Line
Count
Source
274
3.41M
    {
275
3.41M
        return ob->ob_type;
276
3.41M
    }
codegen.c:_Py_TYPE
Line
Count
Source
274
1.43k
    {
275
1.43k
        return ob->ob_type;
276
1.43k
    }
compile.c:_Py_TYPE
Line
Count
Source
274
167k
    {
275
167k
        return ob->ob_type;
276
167k
    }
context.c:_Py_TYPE
Line
Count
Source
274
16.2k
    {
275
16.2k
        return ob->ob_type;
276
16.2k
    }
errors.c:_Py_TYPE
Line
Count
Source
274
341M
    {
275
341M
        return ob->ob_type;
276
341M
    }
flowgraph.c:_Py_TYPE
Line
Count
Source
274
69.2k
    {
275
69.2k
        return ob->ob_type;
276
69.2k
    }
Unexecuted instantiation: frame.c:_Py_TYPE
Unexecuted instantiation: future.c:_Py_TYPE
gc.c:_Py_TYPE
Line
Count
Source
274
1.92G
    {
275
1.92G
        return ob->ob_type;
276
1.92G
    }
Unexecuted instantiation: gc_gil.c:_Py_TYPE
getargs.c:_Py_TYPE
Line
Count
Source
274
14.2M
    {
275
14.2M
        return ob->ob_type;
276
14.2M
    }
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
33.3k
    {
275
33.3k
        return ob->ob_type;
276
33.3k
    }
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
491k
    {
275
491k
        return ob->ob_type;
276
491k
    }
modsupport.c:_Py_TYPE
Line
Count
Source
274
204k
    {
275
204k
        return ob->ob_type;
276
204k
    }
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
45.6k
    {
275
45.6k
        return ob->ob_type;
276
45.6k
    }
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
28.7M
    {
275
28.7M
        return ob->ob_type;
276
28.7M
    }
symtable.c:_Py_TYPE
Line
Count
Source
274
119k
    {
275
119k
        return ob->ob_type;
276
119k
    }
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
16.0M
    {
275
16.0M
        return ob->ob_type;
276
16.0M
    }
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
51.4k
    {
275
51.4k
        return ob->ob_type;
276
51.4k
    }
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
1.03M
    {
275
1.03M
        return ob->ob_type;
276
1.03M
    }
_collectionsmodule.c:_Py_TYPE
Line
Count
Source
274
358k
    {
275
358k
        return ob->ob_type;
276
358k
    }
Unexecuted instantiation: errnomodule.c:_Py_TYPE
_iomodule.c:_Py_TYPE
Line
Count
Source
274
3.06k
    {
275
3.06k
        return ob->ob_type;
276
3.06k
    }
iobase.c:_Py_TYPE
Line
Count
Source
274
15.2k
    {
275
15.2k
        return ob->ob_type;
276
15.2k
    }
fileio.c:_Py_TYPE
Line
Count
Source
274
30.6k
    {
275
30.6k
        return ob->ob_type;
276
30.6k
    }
bytesio.c:_Py_TYPE
Line
Count
Source
274
24.8k
    {
275
24.8k
        return ob->ob_type;
276
24.8k
    }
bufferedio.c:_Py_TYPE
Line
Count
Source
274
33.0k
    {
275
33.0k
        return ob->ob_type;
276
33.0k
    }
textio.c:_Py_TYPE
Line
Count
Source
274
115k
    {
275
115k
        return ob->ob_type;
276
115k
    }
stringio.c:_Py_TYPE
Line
Count
Source
274
19.2M
    {
275
19.2M
        return ob->ob_type;
276
19.2M
    }
itertoolsmodule.c:_Py_TYPE
Line
Count
Source
274
7.06k
    {
275
7.06k
        return ob->ob_type;
276
7.06k
    }
sre.c:_Py_TYPE
Line
Count
Source
274
255M
    {
275
255M
        return ob->ob_type;
276
255M
    }
Unexecuted instantiation: _sysconfig.c:_Py_TYPE
_threadmodule.c:_Py_TYPE
Line
Count
Source
274
20.3k
    {
275
20.3k
        return ob->ob_type;
276
20.3k
    }
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.53k
    {
275
8.53k
        return ob->ob_type;
276
8.53k
    }
_abc.c:_Py_TYPE
Line
Count
Source
274
558k
    {
275
558k
        return ob->ob_type;
276
558k
    }
_functoolsmodule.c:_Py_TYPE
Line
Count
Source
274
123k
    {
275
123k
        return ob->ob_type;
276
123k
    }
Unexecuted instantiation: _localemodule.c:_Py_TYPE
Unexecuted instantiation: _opcode.c:_Py_TYPE
_operator.c:_Py_TYPE
Line
Count
Source
274
1.73M
    {
275
1.73M
        return ob->ob_type;
276
1.73M
    }
_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.93G
    {
275
1.93G
        return ob->ob_type;
276
1.93G
    }
Unexecuted instantiation: boolobject.c:_Py_TYPE
bytes_methods.c:_Py_TYPE
Line
Count
Source
274
1.57M
    {
275
1.57M
        return ob->ob_type;
276
1.57M
    }
bytearrayobject.c:_Py_TYPE
Line
Count
Source
274
3.40M
    {
275
3.40M
        return ob->ob_type;
276
3.40M
    }
capsule.c:_Py_TYPE
Line
Count
Source
274
15.0k
    {
275
15.0k
        return ob->ob_type;
276
15.0k
    }
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
21.0M
    {
275
21.0M
        return ob->ob_type;
276
21.0M
    }
codeobject.c:_Py_TYPE
Line
Count
Source
274
1.68M
    {
275
1.68M
        return ob->ob_type;
276
1.68M
    }
complexobject.c:_Py_TYPE
Line
Count
Source
274
10.1k
    {
275
10.1k
        return ob->ob_type;
276
10.1k
    }
descrobject.c:_Py_TYPE
Line
Count
Source
274
871M
    {
275
871M
        return ob->ob_type;
276
871M
    }
enumobject.c:_Py_TYPE
Line
Count
Source
274
158M
    {
275
158M
        return ob->ob_type;
276
158M
    }
genobject.c:_Py_TYPE
Line
Count
Source
274
51.9M
    {
275
51.9M
        return ob->ob_type;
276
51.9M
    }
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.9k
    {
275
28.9k
        return ob->ob_type;
276
28.9k
    }
Unexecuted instantiation: interpolationobject.c:_Py_TYPE
iterobject.c:_Py_TYPE
Line
Count
Source
274
3.16M
    {
275
3.16M
        return ob->ob_type;
276
3.16M
    }
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
4.16k
    {
275
4.16k
        return ob->ob_type;
276
4.16k
    }
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.6k
    {
275
11.6k
        return ob->ob_type;
276
11.6k
    }
ast_preprocess.c:_Py_TYPE
Line
Count
Source
274
499
    {
275
499
        return ob->ob_type;
276
499
    }
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
71.2k
    {
275
71.2k
        return ob->ob_type;
276
71.2k
    }
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
170k
    {
275
170k
        return ob->ob_type;
276
170k
    }
Unexecuted instantiation: string_parser.c:_Py_TYPE
277
    #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
278
31.2G
    #   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
6.14G
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
6.14G
    assert(Py_TYPE(ob) != &PyLong_Type);
291
6.14G
    assert(Py_TYPE(ob) != &PyBool_Type);
292
6.14G
    return  _PyVarObject_CAST(ob)->ob_size;
293
6.14G
}
bytesobject.c:Py_SIZE
Line
Count
Source
289
26.7M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
26.7M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
26.7M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
26.7M
    return  _PyVarObject_CAST(ob)->ob_size;
293
26.7M
}
call.c:Py_SIZE
Line
Count
Source
289
75.5M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
75.5M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
75.5M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
75.5M
    return  _PyVarObject_CAST(ob)->ob_size;
293
75.5M
}
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
480k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
480k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
480k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
480k
    return  _PyVarObject_CAST(ob)->ob_size;
293
480k
}
listobject.c:Py_SIZE
Line
Count
Source
289
1.91G
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.91G
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.91G
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.91G
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.91G
}
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
86.7k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
86.7k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
86.7k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
86.7k
    return  _PyVarObject_CAST(ob)->ob_size;
293
86.7k
}
memoryobject.c:Py_SIZE
Line
Count
Source
289
770
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
770
    assert(Py_TYPE(ob) != &PyLong_Type);
291
770
    assert(Py_TYPE(ob) != &PyBool_Type);
292
770
    return  _PyVarObject_CAST(ob)->ob_size;
293
770
}
moduleobject.c:Py_SIZE
Line
Count
Source
289
956
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
956
    assert(Py_TYPE(ob) != &PyLong_Type);
291
956
    assert(Py_TYPE(ob) != &PyBool_Type);
292
956
    return  _PyVarObject_CAST(ob)->ob_size;
293
956
}
object.c:Py_SIZE
Line
Count
Source
289
7.50M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
7.50M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
7.50M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
7.50M
    return  _PyVarObject_CAST(ob)->ob_size;
293
7.50M
}
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.68k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
4.68k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
4.68k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
4.68k
    return  _PyVarObject_CAST(ob)->ob_size;
293
4.68k
}
Unexecuted instantiation: templateobject.c:Py_SIZE
tupleobject.c:Py_SIZE
Line
Count
Source
289
1.36G
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.36G
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.36G
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.36G
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.36G
}
typeobject.c:Py_SIZE
Line
Count
Source
289
594M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
594M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
594M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
594M
    return  _PyVarObject_CAST(ob)->ob_size;
293
594M
}
Unexecuted instantiation: typevarobject.c:Py_SIZE
unicodeobject.c:Py_SIZE
Line
Count
Source
289
79.8M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
79.8M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
79.8M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
79.8M
    return  _PyVarObject_CAST(ob)->ob_size;
293
79.8M
}
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
32.5k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
32.5k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
32.5k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
32.5k
    return  _PyVarObject_CAST(ob)->ob_size;
293
32.5k
}
bltinmodule.c:Py_SIZE
Line
Count
Source
289
2.89M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
2.89M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
2.89M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
2.89M
    return  _PyVarObject_CAST(ob)->ob_size;
293
2.89M
}
ceval.c:Py_SIZE
Line
Count
Source
289
1.77G
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.77G
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.77G
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.77G
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.77G
}
codecs.c:Py_SIZE
Line
Count
Source
289
1.08M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.08M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.08M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.08M
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.08M
}
codegen.c:Py_SIZE
Line
Count
Source
289
706
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
706
    assert(Py_TYPE(ob) != &PyLong_Type);
291
706
    assert(Py_TYPE(ob) != &PyBool_Type);
292
706
    return  _PyVarObject_CAST(ob)->ob_size;
293
706
}
compile.c:Py_SIZE
Line
Count
Source
289
38.7k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
38.7k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
38.7k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
38.7k
    return  _PyVarObject_CAST(ob)->ob_size;
293
38.7k
}
Unexecuted instantiation: context.c:Py_SIZE
Unexecuted instantiation: errors.c:Py_SIZE
flowgraph.c:Py_SIZE
Line
Count
Source
289
114k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
114k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
114k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
114k
    return  _PyVarObject_CAST(ob)->ob_size;
293
114k
}
Unexecuted instantiation: frame.c:Py_SIZE
Unexecuted instantiation: future.c:Py_SIZE
gc.c:Py_SIZE
Line
Count
Source
289
224k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
224k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
224k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
224k
    return  _PyVarObject_CAST(ob)->ob_size;
293
224k
}
Unexecuted instantiation: gc_gil.c:Py_SIZE
getargs.c:Py_SIZE
Line
Count
Source
289
3.06M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
3.06M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
3.06M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
3.06M
    return  _PyVarObject_CAST(ob)->ob_size;
293
3.06M
}
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
13.5M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
13.5M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
13.5M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
13.5M
    return  _PyVarObject_CAST(ob)->ob_size;
293
13.5M
}
Unexecuted instantiation: legacy_tracing.c:Py_SIZE
Unexecuted instantiation: lock.c:Py_SIZE
marshal.c:Py_SIZE
Line
Count
Source
289
320k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
320k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
320k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
320k
    return  _PyVarObject_CAST(ob)->ob_size;
293
320k
}
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.7k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
22.7k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
22.7k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
22.7k
    return  _PyVarObject_CAST(ob)->ob_size;
293
22.7k
}
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.5k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
11.5k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
11.5k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
11.5k
    return  _PyVarObject_CAST(ob)->ob_size;
293
11.5k
}
symtable.c:Py_SIZE
Line
Count
Source
289
45.1k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
45.1k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
45.1k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
45.1k
    return  _PyVarObject_CAST(ob)->ob_size;
293
45.1k
}
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.83k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
5.83k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
5.83k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
5.83k
    return  _PyVarObject_CAST(ob)->ob_size;
293
5.83k
}
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.29k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
2.29k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
2.29k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
2.29k
    return  _PyVarObject_CAST(ob)->ob_size;
293
2.29k
}
bytesio.c:Py_SIZE
Line
Count
Source
289
28.9k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
28.9k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
28.9k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
28.9k
    return  _PyVarObject_CAST(ob)->ob_size;
293
28.9k
}
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
16.3k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
16.3k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
16.3k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
16.3k
    return  _PyVarObject_CAST(ob)->ob_size;
293
16.3k
}
stringio.c:Py_SIZE
Line
Count
Source
289
32.6k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
32.6k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
32.6k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
32.6k
    return  _PyVarObject_CAST(ob)->ob_size;
293
32.6k
}
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
61.7M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
61.7M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
61.7M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
61.7M
    return  _PyVarObject_CAST(ob)->ob_size;
293
61.7M
}
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
33.0k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
33.0k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
33.0k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
33.0k
    return  _PyVarObject_CAST(ob)->ob_size;
293
33.0k
}
Unexecuted instantiation: _localemodule.c:Py_SIZE
Unexecuted instantiation: _opcode.c:Py_SIZE
_operator.c:Py_SIZE
Line
Count
Source
289
1.45M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.45M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.45M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.45M
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.45M
}
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
100k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
100k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
100k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
100k
    return  _PyVarObject_CAST(ob)->ob_size;
293
100k
}
Unexecuted instantiation: boolobject.c:Py_SIZE
bytes_methods.c:Py_SIZE
Line
Count
Source
289
787k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
787k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
787k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
787k
    return  _PyVarObject_CAST(ob)->ob_size;
293
787k
}
bytearrayobject.c:Py_SIZE
Line
Count
Source
289
61.4M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
61.4M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
61.4M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
61.4M
    return  _PyVarObject_CAST(ob)->ob_size;
293
61.4M
}
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.91M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
1.91M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
1.91M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
1.91M
    return  _PyVarObject_CAST(ob)->ob_size;
293
1.91M
}
Unexecuted instantiation: complexobject.c:Py_SIZE
descrobject.c:Py_SIZE
Line
Count
Source
289
13.7M
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
13.7M
    assert(Py_TYPE(ob) != &PyLong_Type);
291
13.7M
    assert(Py_TYPE(ob) != &PyBool_Type);
292
13.7M
    return  _PyVarObject_CAST(ob)->ob_size;
293
13.7M
}
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
597k
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
597k
    assert(Py_TYPE(ob) != &PyLong_Type);
291
597k
    assert(Py_TYPE(ob) != &PyBool_Type);
292
597k
    return  _PyVarObject_CAST(ob)->ob_size;
293
597k
}
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
474
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
290
474
    assert(Py_TYPE(ob) != &PyLong_Type);
291
474
    assert(Py_TYPE(ob) != &PyBool_Type);
292
474
    return  _PyVarObject_CAST(ob)->ob_size;
293
474
}
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
6.10G
#  define Py_SIZE(ob) Py_SIZE(_PyObject_CAST(ob))
296
#endif
297
#endif // !defined(_Py_OPAQUE_PYOBJECT)
298
299
12.9G
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
12.9G
    return Py_TYPE(ob) == type;
301
12.9G
}
bytesobject.c:Py_IS_TYPE
Line
Count
Source
299
6.88M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
6.88M
    return Py_TYPE(ob) == type;
301
6.88M
}
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
16.1M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
16.1M
    return Py_TYPE(ob) == type;
301
16.1M
}
listobject.c:Py_IS_TYPE
Line
Count
Source
299
399M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
399M
    return Py_TYPE(ob) == type;
301
399M
}
longobject.c:Py_IS_TYPE
Line
Count
Source
299
922M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
922M
    return Py_TYPE(ob) == type;
301
922M
}
dictobject.c:Py_IS_TYPE
Line
Count
Source
299
2.99G
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
2.99G
    return Py_TYPE(ob) == type;
301
2.99G
}
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
23.3M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
23.3M
    return Py_TYPE(ob) == type;
301
23.3M
}
object.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: 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
50.0M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
50.0M
    return Py_TYPE(ob) == type;
301
50.0M
}
sliceobject.c:Py_IS_TYPE
Line
Count
Source
299
768
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
768
    return Py_TYPE(ob) == type;
301
768
}
Unexecuted instantiation: structseq.c:Py_IS_TYPE
Unexecuted instantiation: templateobject.c:Py_IS_TYPE
tupleobject.c:Py_IS_TYPE
Line
Count
Source
299
463M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
463M
    return Py_TYPE(ob) == type;
301
463M
}
typeobject.c:Py_IS_TYPE
Line
Count
Source
299
181M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
181M
    return Py_TYPE(ob) == type;
301
181M
}
Unexecuted instantiation: typevarobject.c:Py_IS_TYPE
unicodeobject.c:Py_IS_TYPE
Line
Count
Source
299
466M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
466M
    return Py_TYPE(ob) == type;
301
466M
}
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
566k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
566k
    return Py_TYPE(ob) == type;
301
566k
}
_warnings.c:Py_IS_TYPE
Line
Count
Source
299
18.5k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
18.5k
    return Py_TYPE(ob) == type;
301
18.5k
}
bltinmodule.c:Py_IS_TYPE
Line
Count
Source
299
37.0M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
37.0M
    return Py_TYPE(ob) == type;
301
37.0M
}
ceval.c:Py_IS_TYPE
Line
Count
Source
299
5.89G
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
5.89G
    return Py_TYPE(ob) == type;
301
5.89G
}
codecs.c:Py_IS_TYPE
Line
Count
Source
299
1.62M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.62M
    return Py_TYPE(ob) == type;
301
1.62M
}
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
167k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
167k
    return Py_TYPE(ob) == type;
301
167k
}
context.c:Py_IS_TYPE
Line
Count
Source
299
16.2k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
16.2k
    return Py_TYPE(ob) == type;
301
16.2k
}
Unexecuted instantiation: errors.c:Py_IS_TYPE
flowgraph.c:Py_IS_TYPE
Line
Count
Source
299
69.0k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
69.0k
    return Py_TYPE(ob) == type;
301
69.0k
}
Unexecuted instantiation: frame.c:Py_IS_TYPE
Unexecuted instantiation: future.c:Py_IS_TYPE
gc.c:Py_IS_TYPE
Line
Count
Source
299
166M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
166M
    return Py_TYPE(ob) == type;
301
166M
}
Unexecuted instantiation: gc_gil.c:Py_IS_TYPE
getargs.c:Py_IS_TYPE
Line
Count
Source
299
10.5M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
10.5M
    return Py_TYPE(ob) == type;
301
10.5M
}
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
491k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
491k
    return Py_TYPE(ob) == type;
301
491k
}
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
21.9M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
21.9M
    return Py_TYPE(ob) == type;
301
21.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
16.0M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
16.0M
    return Py_TYPE(ob) == type;
301
16.0M
}
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.29k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.29k
    return Py_TYPE(ob) == type;
301
1.29k
}
bytesio.c:Py_IS_TYPE
Line
Count
Source
299
9.64k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
9.64k
    return Py_TYPE(ob) == type;
301
9.64k
}
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.1M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
19.1M
    return Py_TYPE(ob) == type;
301
19.1M
}
Unexecuted instantiation: itertoolsmodule.c:Py_IS_TYPE
sre.c:Py_IS_TYPE
Line
Count
Source
299
95.6k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
95.6k
    return Py_TYPE(ob) == type;
301
95.6k
}
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.84k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
2.84k
    return Py_TYPE(ob) == type;
301
2.84k
}
_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.45M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.45M
    return Py_TYPE(ob) == type;
301
1.45M
}
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
186M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
186M
    return Py_TYPE(ob) == type;
301
186M
}
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
15.0k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
15.0k
    return Py_TYPE(ob) == type;
301
15.0k
}
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.33M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
1.33M
    return Py_TYPE(ob) == type;
301
1.33M
}
complexobject.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
}
descrobject.c:Py_IS_TYPE
Line
Count
Source
299
499M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
499M
    return Py_TYPE(ob) == type;
301
499M
}
Unexecuted instantiation: enumobject.c:Py_IS_TYPE
genobject.c:Py_IS_TYPE
Line
Count
Source
299
51.9M
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
51.9M
    return Py_TYPE(ob) == type;
301
51.9M
}
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
4.08k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
4.08k
    return Py_TYPE(ob) == type;
301
4.08k
}
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.6k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
11.6k
    return Py_TYPE(ob) == type;
301
11.6k
}
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.2k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
13.2k
    return Py_TYPE(ob) == type;
301
13.2k
}
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
170k
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
300
170k
    return Py_TYPE(ob) == type;
301
170k
}
Unexecuted instantiation: string_parser.c:Py_IS_TYPE
302
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
303
20.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.06G
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
1.06G
    ob->ob_type = type;
310
1.06G
}
bytesobject.c:Py_SET_TYPE
Line
Count
Source
308
21.0M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
21.0M
    ob->ob_type = type;
310
21.0M
}
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
457k
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
457k
    ob->ob_type = type;
310
457k
}
Unexecuted instantiation: listobject.c:Py_SET_TYPE
longobject.c:Py_SET_TYPE
Line
Count
Source
308
111M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
111M
    ob->ob_type = type;
310
111M
}
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
45.7k
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
45.7k
    ob->ob_type = type;
310
45.7k
}
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
106M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
106M
    ob->ob_type = type;
310
106M
}
Unexecuted instantiation: typevarobject.c:Py_SET_TYPE
unicodeobject.c:Py_SET_TYPE
Line
Count
Source
308
493M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
493M
    ob->ob_type = type;
310
493M
}
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
328M
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
328M
    ob->ob_type = type;
310
328M
}
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
3.72k
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
309
3.72k
    ob->ob_type = type;
310
3.72k
}
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.06G
#  define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
313
#endif
314
315
1.29G
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
1.29G
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
1.29G
    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.29G
    ob->ob_size = size;
322
1.29G
#endif
323
1.29G
}
bytesobject.c:Py_SET_SIZE
Line
Count
Source
315
24.1M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
24.1M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
24.1M
    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
24.1M
    ob->ob_size = size;
322
24.1M
#endif
323
24.1M
}
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
626M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
626M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
626M
    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
626M
    ob->ob_size = size;
322
626M
#endif
323
626M
}
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.78k
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
4.78k
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
4.78k
    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.78k
    ob->ob_size = size;
322
4.78k
#endif
323
4.78k
}
Unexecuted instantiation: templateobject.c:Py_SET_SIZE
Unexecuted instantiation: tupleobject.c:Py_SET_SIZE
typeobject.c:Py_SET_SIZE
Line
Count
Source
315
2.13M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
2.13M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
2.13M
    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.13M
    ob->ob_size = size;
322
2.13M
#endif
323
2.13M
}
Unexecuted instantiation: typevarobject.c:Py_SET_SIZE
unicodeobject.c:Py_SET_SIZE
Line
Count
Source
315
16.2M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
16.2M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
16.2M
    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.2M
    ob->ob_size = size;
322
16.2M
#endif
323
16.2M
}
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
362M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
362M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
362M
    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
362M
    ob->ob_size = size;
322
362M
#endif
323
362M
}
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
186M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
186M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
186M
    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
186M
    ob->ob_size = size;
322
186M
#endif
323
186M
}
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.3M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
71.3M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
71.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
71.3M
    ob->ob_size = size;
322
71.3M
#endif
323
71.3M
}
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.15M
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
316
5.15M
    assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
317
5.15M
    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.15M
    ob->ob_size = size;
322
5.15M
#endif
323
5.15M
}
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.29G
#  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
637M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
637M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
637M
}
Unexecuted instantiation: bytesobject.c:PyObject_TypeCheck
Unexecuted instantiation: call.c:PyObject_TypeCheck
exceptions.c:PyObject_TypeCheck
Line
Count
Source
429
1.05M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
1.05M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
1.05M
}
Unexecuted instantiation: genericaliasobject.c:PyObject_TypeCheck
floatobject.c:PyObject_TypeCheck
Line
Count
Source
429
12.4M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
12.4M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
12.4M
}
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
13.2M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
13.2M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
13.2M
}
Unexecuted instantiation: memoryobject.c:PyObject_TypeCheck
moduleobject.c:PyObject_TypeCheck
Line
Count
Source
429
23.3M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
23.3M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
23.3M
}
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
71.2M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
71.2M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
71.2M
}
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.2k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
16.2k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
16.2k
}
bltinmodule.c:PyObject_TypeCheck
Line
Count
Source
429
8.50M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
8.50M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
8.50M
}
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
498k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
498k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
498k
}
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.10M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
1.10M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
1.10M
}
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
960
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
960
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
960
}
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
567
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
567
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
567
}
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.84k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
2.84k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
2.84k
}
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
6.73M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
6.73M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
6.73M
}
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
499M
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
499M
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
499M
}
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
4.08k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
4.08k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
4.08k
}
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.2k
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
430
13.2k
    return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
431
13.2k
}
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
638M
#  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
670M
#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
913M
#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
846M
#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.24G
#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
845M
#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.80M
#define Py_TPFLAGS_SEQUENCE (1 << 5)
546
/* Set if instances of the type object are treated as mappings for pattern matching */
547
2.80M
#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
287k
#define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7)
553
554
/* Set if the type object is immutable: type attributes cannot be set nor deleted */
555
746k
#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
556
557
/* Set if the type object is dynamically allocated */
558
427M
#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
559
560
/* Set if the type allows subclassing */
561
1.12M
#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
583M
#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
29.9M
#define Py_TPFLAGS_READY (1UL << 12)
574
575
/* Set while the type is being 'readied', to prevent recursive ready calls */
576
566k
#define Py_TPFLAGS_READYING (1UL << 13)
577
578
/* Objects support garbage collection (see objimpl.h) */
579
5.36G
#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
282k
#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION 0
586
#endif
587
588
/* Objects behave like an unbound method */
589
95.9M
#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
28.2M
#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
563k
#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
933k
#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.64M
#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
282k
#define Py_TPFLAGS_DEFAULT  ( \
616
282k
                 Py_TPFLAGS_HAVE_STACKLESS_EXTENSION | \
617
282k
                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
260M
#define _Py_IMMORTAL_FLAGS (1 << 0)
637
260M
#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
246k
#define Py_CONSTANT_EMPTY_STR 7
650
3.46M
#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.18G
#  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
149M
#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
99.7M
#  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
284M
#  define Py_NotImplemented (&_Py_NotImplementedStruct)
693
#endif
694
695
/* Macro for returning Py_NotImplemented from a function */
696
20.8M
#define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
697
698
/* Rich comparison opcodes */
699
63.5M
#define Py_LT 0
700
836k
#define Py_LE 1
701
323M
#define Py_EQ 2
702
36.8M
#define Py_NE 3
703
1.97M
#define Py_GT 4
704
1.74k
#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
151M
    do {                                                                    \
722
151M
        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
35.4M
        case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
726
35.4M
        case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;   \
727
1.27M
        case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
728
834k
        case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE;  \
729
92
        default:                                                            \
730
0
            Py_UNREACHABLE();                                               \
731
151M
        }                                                                   \
732
151M
    } 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.99G
{
797
5.99G
    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.99G
    return ((flags & feature) != 0);
805
5.99G
}
bytesobject.c:PyType_HasFeature
Line
Count
Source
796
13.7M
{
797
13.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
13.7M
    flags = type->tp_flags;
803
13.7M
#endif
804
13.7M
    return ((flags & feature) != 0);
805
13.7M
}
call.c:PyType_HasFeature
Line
Count
Source
796
480M
{
797
480M
    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
480M
    flags = type->tp_flags;
803
480M
#endif
804
480M
    return ((flags & feature) != 0);
805
480M
}
exceptions.c:PyType_HasFeature
Line
Count
Source
796
654k
{
797
654k
    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
654k
    flags = type->tp_flags;
803
654k
#endif
804
654k
    return ((flags & feature) != 0);
805
654k
}
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
961k
{
797
961k
    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
961k
    flags = type->tp_flags;
803
961k
#endif
804
961k
    return ((flags & feature) != 0);
805
961k
}
listobject.c:PyType_HasFeature
Line
Count
Source
796
252M
{
797
252M
    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
252M
    flags = type->tp_flags;
803
252M
#endif
804
252M
    return ((flags & feature) != 0);
805
252M
}
longobject.c:PyType_HasFeature
Line
Count
Source
796
831M
{
797
831M
    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
831M
    flags = type->tp_flags;
803
831M
#endif
804
831M
    return ((flags & feature) != 0);
805
831M
}
dictobject.c:PyType_HasFeature
Line
Count
Source
796
347M
{
797
347M
    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
347M
    flags = type->tp_flags;
803
347M
#endif
804
347M
    return ((flags & feature) != 0);
805
347M
}
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.99k
{
797
2.99k
    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.99k
    flags = type->tp_flags;
803
2.99k
#endif
804
2.99k
    return ((flags & feature) != 0);
805
2.99k
}
object.c:PyType_HasFeature
Line
Count
Source
796
777M
{
797
777M
    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
777M
    flags = type->tp_flags;
803
777M
#endif
804
777M
    return ((flags & feature) != 0);
805
777M
}
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
75.3M
{
797
75.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
75.3M
    flags = type->tp_flags;
803
75.3M
#endif
804
75.3M
    return ((flags & feature) != 0);
805
75.3M
}
typeobject.c:PyType_HasFeature
Line
Count
Source
796
249M
{
797
249M
    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
249M
    flags = type->tp_flags;
803
249M
#endif
804
249M
    return ((flags & feature) != 0);
805
249M
}
Unexecuted instantiation: typevarobject.c:PyType_HasFeature
unicodeobject.c:PyType_HasFeature
Line
Count
Source
796
1.53G
{
797
1.53G
    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.53G
    flags = type->tp_flags;
803
1.53G
#endif
804
1.53G
    return ((flags & feature) != 0);
805
1.53G
}
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
36.4M
{
797
36.4M
    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.4M
    flags = type->tp_flags;
803
36.4M
#endif
804
36.4M
    return ((flags & feature) != 0);
805
36.4M
}
_warnings.c:PyType_HasFeature
Line
Count
Source
796
55.6k
{
797
55.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
55.6k
    flags = type->tp_flags;
803
55.6k
#endif
804
55.6k
    return ((flags & feature) != 0);
805
55.6k
}
bltinmodule.c:PyType_HasFeature
Line
Count
Source
796
70.3M
{
797
70.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
70.3M
    flags = type->tp_flags;
803
70.3M
#endif
804
70.3M
    return ((flags & feature) != 0);
805
70.3M
}
ceval.c:PyType_HasFeature
Line
Count
Source
796
218M
{
797
218M
    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
218M
    flags = type->tp_flags;
803
218M
#endif
804
218M
    return ((flags & feature) != 0);
805
218M
}
codecs.c:PyType_HasFeature
Line
Count
Source
796
1.30M
{
797
1.30M
    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.30M
    flags = type->tp_flags;
803
1.30M
#endif
804
1.30M
    return ((flags & feature) != 0);
805
1.30M
}
codegen.c:PyType_HasFeature
Line
Count
Source
796
1.34k
{
797
1.34k
    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.34k
    flags = type->tp_flags;
803
1.34k
#endif
804
1.34k
    return ((flags & feature) != 0);
805
1.34k
}
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
324M
{
797
324M
    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
324M
    flags = type->tp_flags;
803
324M
#endif
804
324M
    return ((flags & feature) != 0);
805
324M
}
flowgraph.c:PyType_HasFeature
Line
Count
Source
796
184
{
797
184
    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
184
    flags = type->tp_flags;
803
184
#endif
804
184
    return ((flags & feature) != 0);
805
184
}
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.7k
{
797
30.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
30.7k
    flags = type->tp_flags;
803
30.7k
#endif
804
30.7k
    return ((flags & feature) != 0);
805
30.7k
}
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
45.6k
{
797
45.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
45.6k
    flags = type->tp_flags;
803
45.6k
#endif
804
45.6k
    return ((flags & feature) != 0);
805
45.6k
}
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.28M
{
797
1.28M
    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.28M
    flags = type->tp_flags;
803
1.28M
#endif
804
1.28M
    return ((flags & feature) != 0);
805
1.28M
}
symtable.c:PyType_HasFeature
Line
Count
Source
796
119k
{
797
119k
    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
119k
    flags = type->tp_flags;
803
119k
#endif
804
119k
    return ((flags & feature) != 0);
805
119k
}
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
51.4k
{
797
51.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
51.4k
    flags = type->tp_flags;
803
51.4k
#endif
804
51.4k
    return ((flags & feature) != 0);
805
51.4k
}
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
1.03M
{
797
1.03M
    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.03M
    flags = type->tp_flags;
803
1.03M
#endif
804
1.03M
    return ((flags & feature) != 0);
805
1.03M
}
Unexecuted instantiation: _collectionsmodule.c:PyType_HasFeature
Unexecuted instantiation: errnomodule.c:PyType_HasFeature
_iomodule.c:PyType_HasFeature
Line
Count
Source
796
3.06k
{
797
3.06k
    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.06k
    flags = type->tp_flags;
803
3.06k
#endif
804
3.06k
    return ((flags & feature) != 0);
805
3.06k
}
Unexecuted instantiation: iobase.c:PyType_HasFeature
fileio.c:PyType_HasFeature
Line
Count
Source
796
1.29k
{
797
1.29k
    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.29k
    flags = type->tp_flags;
803
1.29k
#endif
804
1.29k
    return ((flags & feature) != 0);
805
1.29k
}
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
65.8k
{
797
65.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
65.8k
    flags = type->tp_flags;
803
65.8k
#endif
804
65.8k
    return ((flags & feature) != 0);
805
65.8k
}
stringio.c:PyType_HasFeature
Line
Count
Source
796
98.3k
{
797
98.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
98.3k
    flags = type->tp_flags;
803
98.3k
#endif
804
98.3k
    return ((flags & feature) != 0);
805
98.3k
}
Unexecuted instantiation: itertoolsmodule.c:PyType_HasFeature
sre.c:PyType_HasFeature
Line
Count
Source
796
175M
{
797
175M
    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
175M
    flags = type->tp_flags;
803
175M
#endif
804
175M
    return ((flags & feature) != 0);
805
175M
}
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.84k
{
797
2.84k
    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.84k
    flags = type->tp_flags;
803
2.84k
#endif
804
2.84k
    return ((flags & feature) != 0);
805
2.84k
}
_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.0k
{
797
33.0k
    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.0k
    flags = type->tp_flags;
803
33.0k
#endif
804
33.0k
    return ((flags & feature) != 0);
805
33.0k
}
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
532M
{
797
532M
    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
532M
    flags = type->tp_flags;
803
532M
#endif
804
532M
    return ((flags & feature) != 0);
805
532M
}
Unexecuted instantiation: boolobject.c:PyType_HasFeature
bytes_methods.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
}
bytearrayobject.c:PyType_HasFeature
Line
Count
Source
796
1.73M
{
797
1.73M
    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.73M
    flags = type->tp_flags;
803
1.73M
#endif
804
1.73M
    return ((flags & feature) != 0);
805
1.73M
}
Unexecuted instantiation: capsule.c:PyType_HasFeature
Unexecuted instantiation: cellobject.c:PyType_HasFeature
classobject.c:PyType_HasFeature
Line
Count
Source
796
21.0M
{
797
21.0M
    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
21.0M
    flags = type->tp_flags;
803
21.0M
#endif
804
21.0M
    return ((flags & feature) != 0);
805
21.0M
}
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.17M
{
797
6.17M
    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.17M
    flags = type->tp_flags;
803
6.17M
#endif
804
6.17M
    return ((flags & feature) != 0);
805
6.17M
}
enumobject.c:PyType_HasFeature
Line
Count
Source
796
36.2M
{
797
36.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
36.2M
    flags = type->tp_flags;
803
36.2M
#endif
804
36.2M
    return ((flags & feature) != 0);
805
36.2M
}
genobject.c:PyType_HasFeature
Line
Count
Source
796
3.90k
{
797
3.90k
    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.90k
    flags = type->tp_flags;
803
3.90k
#endif
804
3.90k
    return ((flags & feature) != 0);
805
3.90k
}
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.7k
{
797
28.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
28.7k
    flags = type->tp_flags;
803
28.7k
#endif
804
28.7k
    return ((flags & feature) != 0);
805
28.7k
}
Unexecuted instantiation: interpolationobject.c:PyType_HasFeature
iterobject.c:PyType_HasFeature
Line
Count
Source
796
3.16M
{
797
3.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
3.16M
    flags = type->tp_flags;
803
3.16M
#endif
804
3.16M
    return ((flags & feature) != 0);
805
3.16M
}
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
499
{
797
499
    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
499
    flags = type->tp_flags;
803
499
#endif
804
499
    return ((flags & feature) != 0);
805
499
}
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
57.7k
{
797
57.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
57.7k
    flags = type->tp_flags;
803
57.7k
#endif
804
57.7k
    return ((flags & feature) != 0);
805
57.7k
}
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.76G
#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
808
809
372M
static inline int PyType_Check(PyObject *op) {
810
372M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
372M
}
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
70.3M
static inline int PyType_Check(PyObject *op) {
810
70.3M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
70.3M
}
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
36.4M
static inline int PyType_Check(PyObject *op) {
810
36.4M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
36.4M
}
Unexecuted instantiation: _warnings.c:PyType_Check
bltinmodule.c:PyType_Check
Line
Count
Source
809
9.02k
static inline int PyType_Check(PyObject *op) {
810
9.02k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
9.02k
}
ceval.c:PyType_Check
Line
Count
Source
809
140M
static inline int PyType_Check(PyObject *op) {
810
140M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
140M
}
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
88.0M
static inline int PyType_Check(PyObject *op) {
810
88.0M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
88.0M
}
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.21M
static inline int PyType_Check(PyObject *op) {
810
1.21M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
1.21M
}
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.8M
static inline int PyType_Check(PyObject *op) {
810
28.8M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
28.8M
}
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.16M
static inline int PyType_Check(PyObject *op) {
810
6.16M
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
6.16M
}
Unexecuted instantiation: enumobject.c:PyType_Check
genobject.c:PyType_Check
Line
Count
Source
809
1.95k
static inline int PyType_Check(PyObject *op) {
810
1.95k
    return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
811
1.95k
}
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
583M
#  define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
814
#endif
815
816
#define _PyType_CAST(op) \
817
341M
    (assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
818
819
15.4M
static inline int PyType_CheckExact(PyObject *op) {
820
15.4M
    return Py_IS_TYPE(op, &PyType_Type);
821
15.4M
}
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
15.4M
static inline int PyType_CheckExact(PyObject *op) {
820
15.4M
    return Py_IS_TYPE(op, &PyType_Type);
821
15.4M
}
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
15.4M
#  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