1993-07-28 06:05:47 -03:00
|
|
|
#ifndef Py_OBJECT_H
|
|
|
|
#define Py_OBJECT_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1991-02-19 08:39:46 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Object and type object interface */
|
|
|
|
|
|
|
|
/*
|
|
|
|
Objects are structures allocated on the heap. Special rules apply to
|
|
|
|
the use of objects to ensure they are properly garbage-collected.
|
|
|
|
Objects are never allocated statically or on the stack; they must be
|
|
|
|
accessed through special macros and functions only. (Type objects are
|
|
|
|
exceptions to the first rule; the standard types are represented by
|
2002-07-07 16:59:50 -03:00
|
|
|
statically initialized type objects, although work on type/class unification
|
|
|
|
for Python 2.2 made it possible to have heap-allocated type objects too).
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
An object has a 'reference count' that is increased or decreased when a
|
|
|
|
pointer to the object is copied or deleted; when the reference count
|
|
|
|
reaches zero there are no references to the object left and it can be
|
|
|
|
removed from the heap.
|
|
|
|
|
|
|
|
An object has a 'type' that determines what it represents and what kind
|
|
|
|
of data it contains. An object's type is fixed when it is created.
|
|
|
|
Types themselves are represented as objects; an object contains a
|
|
|
|
pointer to the corresponding type object. The type itself has a type
|
|
|
|
pointer pointing to the object representing the type 'type', which
|
2020-04-08 06:28:59 -03:00
|
|
|
contains a pointer to itself!.
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
Objects do not float around in memory; once allocated an object keeps
|
|
|
|
the same size and address. Objects that must hold variable-size data
|
|
|
|
can contain pointers to variable-size parts of the object. Not all
|
|
|
|
objects of the same type have the same size; but the size cannot change
|
|
|
|
after allocation. (These restrictions are made so a reference to an
|
|
|
|
object can be simply a pointer -- moving an object would require
|
|
|
|
updating all the pointers, and changing an object's size would require
|
|
|
|
moving it if there was another object right next to it.)
|
|
|
|
|
1995-01-12 07:45:45 -04:00
|
|
|
Objects are always accessed through pointers of the type 'PyObject *'.
|
|
|
|
The type 'PyObject' is a structure that only contains the reference count
|
1990-10-14 09:07:46 -03:00
|
|
|
and the type pointer. The actual memory allocated for an object
|
|
|
|
contains other data that can only be accessed after casting the pointer
|
|
|
|
to a pointer to a longer structure type. This longer type must start
|
1995-01-12 07:45:45 -04:00
|
|
|
with the reference count and type fields; the macro PyObject_HEAD should be
|
2000-07-16 09:04:32 -03:00
|
|
|
used for this (to accommodate for future changes). The implementation
|
1990-10-14 09:07:46 -03:00
|
|
|
of a particular object type can cast the object pointer to the proper
|
|
|
|
type and back.
|
|
|
|
|
|
|
|
A standard interface exists for objects that contain an array of items
|
|
|
|
whose size is determined when the object is allocated.
|
|
|
|
*/
|
|
|
|
|
2019-04-24 19:56:28 -03:00
|
|
|
/* Py_DEBUG implies Py_REF_DEBUG. */
|
|
|
|
#if defined(Py_DEBUG) && !defined(Py_REF_DEBUG)
|
2021-04-02 10:45:37 -03:00
|
|
|
# define Py_REF_DEBUG
|
2002-07-07 16:59:50 -03:00
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2002-07-07 16:59:50 -03:00
|
|
|
/* PyObject_HEAD defines the initial segment of every PyObject. */
|
2010-05-09 12:52:27 -03:00
|
|
|
#define PyObject_HEAD PyObject ob_base;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2023-11-15 12:38:31 -04:00
|
|
|
// Kept for backward compatibility. It was needed by Py_TRACE_REFS build.
|
|
|
|
#define _PyObject_EXTRA_INIT
|
|
|
|
|
2024-04-16 08:51:41 -03:00
|
|
|
/* Make all uses of PyObject_HEAD_INIT immortal.
|
|
|
|
*
|
|
|
|
* Statically allocated objects might be shared between
|
|
|
|
* interpreters, so must be marked as immortal.
|
|
|
|
*/
|
2023-11-20 09:52:00 -04:00
|
|
|
#if defined(Py_GIL_DISABLED)
|
2023-10-30 13:06:09 -03:00
|
|
|
#define PyObject_HEAD_INIT(type) \
|
|
|
|
{ \
|
|
|
|
0, \
|
|
|
|
0, \
|
2023-11-08 18:39:29 -04:00
|
|
|
{ 0 }, \
|
2023-10-30 13:06:09 -03:00
|
|
|
0, \
|
|
|
|
_Py_IMMORTAL_REFCNT_LOCAL, \
|
|
|
|
0, \
|
|
|
|
(type), \
|
|
|
|
},
|
2024-04-16 08:51:41 -03:00
|
|
|
#else
|
2023-04-22 16:39:37 -03:00
|
|
|
#define PyObject_HEAD_INIT(type) \
|
|
|
|
{ \
|
|
|
|
{ _Py_IMMORTAL_REFCNT }, \
|
|
|
|
(type) \
|
|
|
|
},
|
2024-04-16 08:51:41 -03:00
|
|
|
#endif
|
2023-04-22 16:39:37 -03:00
|
|
|
|
|
|
|
#define PyVarObject_HEAD_INIT(type, size) \
|
|
|
|
{ \
|
|
|
|
PyObject_HEAD_INIT(type) \
|
|
|
|
(size) \
|
|
|
|
},
|
2002-07-07 16:59:50 -03:00
|
|
|
|
|
|
|
/* PyObject_VAR_HEAD defines the initial segment of all variable-size
|
|
|
|
* container objects. These end with a declaration of an array with 1
|
|
|
|
* element, but enough space is malloc'ed so that the array actually
|
|
|
|
* has room for ob_size elements. Note that ob_size is an element count,
|
|
|
|
* not necessarily a byte count.
|
|
|
|
*/
|
Merged revisions 56467-56482 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/p3yk
................
r56477 | martin.v.loewis | 2007-07-21 09:04:38 +0200 (Sa, 21 Jul 2007) | 11 lines
Merged revisions 56466-56476 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r56476 | martin.v.loewis | 2007-07-21 08:55:02 +0200 (Sa, 21 Jul 2007) | 4 lines
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
backwards compatibility. Add Py_Refcnt, Py_Type, Py_Size, and
PyVarObject_HEAD_INIT.
........
................
r56478 | martin.v.loewis | 2007-07-21 09:47:23 +0200 (Sa, 21 Jul 2007) | 2 lines
PEP 3123: Use proper C inheritance for PyObject.
................
r56479 | martin.v.loewis | 2007-07-21 10:06:55 +0200 (Sa, 21 Jul 2007) | 3 lines
Add longintrepr.h to Python.h, so that the compiler can
see that PyFalse is really some kind of PyObject*.
................
r56480 | martin.v.loewis | 2007-07-21 10:47:18 +0200 (Sa, 21 Jul 2007) | 2 lines
Qualify SHIFT, MASK, BASE.
................
r56482 | martin.v.loewis | 2007-07-21 19:10:57 +0200 (Sa, 21 Jul 2007) | 2 lines
Correctly refer to _ob_next.
................
2007-07-21 14:22:18 -03:00
|
|
|
#define PyObject_VAR_HEAD PyVarObject ob_base;
|
2006-02-15 13:27:45 -04:00
|
|
|
#define Py_INVALID_SIZE (Py_ssize_t)-1
|
2002-07-07 02:13:56 -03:00
|
|
|
|
2002-07-07 16:59:50 -03:00
|
|
|
/* Nothing is actually declared to be a PyObject, but every pointer to
|
|
|
|
* a Python object can be cast to a PyObject*. This is inheritance built
|
|
|
|
* by hand. Similarly every pointer to a variable-size Python object can,
|
|
|
|
* in addition, be cast to PyVarObject*.
|
|
|
|
*/
|
2023-11-20 09:52:00 -04:00
|
|
|
#ifndef Py_GIL_DISABLED
|
2022-02-24 12:07:12 -04:00
|
|
|
struct _object {
|
2023-07-25 09:27:48 -03:00
|
|
|
#if (defined(__GNUC__) || defined(__clang__)) \
|
|
|
|
&& !(defined __STDC_VERSION__ && __STDC_VERSION__ >= 201112L)
|
|
|
|
// On C99 and older, anonymous union is a GCC and clang extension
|
|
|
|
__extension__
|
2023-07-25 11:45:38 -03:00
|
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
// Ignore MSC warning C4201: "nonstandard extension used:
|
|
|
|
// nameless struct/union"
|
|
|
|
__pragma(warning(push))
|
|
|
|
__pragma(warning(disable: 4201))
|
2023-07-25 09:27:48 -03:00
|
|
|
#endif
|
2023-04-22 16:39:37 -03:00
|
|
|
union {
|
|
|
|
Py_ssize_t ob_refcnt;
|
|
|
|
#if SIZEOF_VOID_P > 4
|
|
|
|
PY_UINT32_T ob_refcnt_split[2];
|
|
|
|
#endif
|
|
|
|
};
|
2023-07-25 11:45:38 -03:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
__pragma(warning(pop))
|
|
|
|
#endif
|
|
|
|
|
2020-02-05 10:10:39 -04:00
|
|
|
PyTypeObject *ob_type;
|
2022-02-24 12:07:12 -04:00
|
|
|
};
|
2023-10-30 13:06:09 -03:00
|
|
|
#else
|
|
|
|
// Objects that are not owned by any thread use a thread id (tid) of zero.
|
|
|
|
// This includes both immortal objects and objects whose reference count
|
|
|
|
// fields have been merged.
|
|
|
|
#define _Py_UNOWNED_TID 0
|
|
|
|
|
|
|
|
struct _object {
|
2024-02-01 16:29:19 -04:00
|
|
|
// ob_tid stores the thread id (or zero). It is also used by the GC and the
|
|
|
|
// trashcan mechanism as a linked list pointer and by the GC to store the
|
|
|
|
// computed "gc_refs" refcount.
|
2024-01-25 14:27:36 -04:00
|
|
|
uintptr_t ob_tid;
|
2023-10-30 13:06:09 -03:00
|
|
|
uint16_t _padding;
|
2024-06-20 12:29:08 -03:00
|
|
|
PyMutex ob_mutex; // per-object lock
|
2023-10-30 13:06:09 -03:00
|
|
|
uint8_t ob_gc_bits; // gc-related state
|
|
|
|
uint32_t ob_ref_local; // local reference count
|
|
|
|
Py_ssize_t ob_ref_shared; // shared (atomic) reference count
|
|
|
|
PyTypeObject *ob_type;
|
|
|
|
};
|
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2018-11-21 21:57:29 -04:00
|
|
|
/* Cast argument to PyObject* type. */
|
2022-05-03 11:37:06 -03:00
|
|
|
#define _PyObject_CAST(op) _Py_CAST(PyObject*, (op))
|
2018-11-21 21:57:29 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
typedef struct {
|
2010-05-09 12:52:27 -03:00
|
|
|
PyObject ob_base;
|
|
|
|
Py_ssize_t ob_size; /* Number of items in variable part */
|
1997-05-15 18:31:03 -03:00
|
|
|
} PyVarObject;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2018-11-21 21:57:29 -04:00
|
|
|
/* Cast argument to PyVarObject* type. */
|
2022-05-03 11:37:06 -03:00
|
|
|
#define _PyVarObject_CAST(op) _Py_CAST(PyVarObject*, (op))
|
2020-05-27 09:55:10 -03:00
|
|
|
|
|
|
|
|
2021-04-10 19:17:39 -03:00
|
|
|
// Test if the 'x' object is the 'y' object, the same as "x is y" in Python.
|
|
|
|
PyAPI_FUNC(int) Py_Is(PyObject *x, PyObject *y);
|
|
|
|
#define Py_Is(x, y) ((x) == (y))
|
|
|
|
|
2023-11-20 09:52:00 -04:00
|
|
|
#if defined(Py_GIL_DISABLED) && !defined(Py_LIMITED_API)
|
2023-12-18 12:54:49 -04:00
|
|
|
PyAPI_FUNC(uintptr_t) _Py_GetThreadLocal_Addr(void);
|
|
|
|
|
2023-10-30 13:06:09 -03:00
|
|
|
static inline uintptr_t
|
|
|
|
_Py_ThreadId(void)
|
|
|
|
{
|
|
|
|
uintptr_t tid;
|
|
|
|
#if defined(_MSC_VER) && defined(_M_X64)
|
|
|
|
tid = __readgsqword(48);
|
|
|
|
#elif defined(_MSC_VER) && defined(_M_IX86)
|
|
|
|
tid = __readfsdword(24);
|
|
|
|
#elif defined(_MSC_VER) && defined(_M_ARM64)
|
|
|
|
tid = __getReg(18);
|
|
|
|
#elif defined(__i386__)
|
|
|
|
__asm__("movl %%gs:0, %0" : "=r" (tid)); // 32-bit always uses GS
|
|
|
|
#elif defined(__MACH__) && defined(__x86_64__)
|
|
|
|
__asm__("movq %%gs:0, %0" : "=r" (tid)); // x86_64 macOSX uses GS
|
|
|
|
#elif defined(__x86_64__)
|
|
|
|
__asm__("movq %%fs:0, %0" : "=r" (tid)); // x86_64 Linux, BSD uses FS
|
|
|
|
#elif defined(__arm__)
|
|
|
|
__asm__ ("mrc p15, 0, %0, c13, c0, 3\nbic %0, %0, #3" : "=r" (tid));
|
|
|
|
#elif defined(__aarch64__) && defined(__APPLE__)
|
|
|
|
__asm__ ("mrs %0, tpidrro_el0" : "=r" (tid));
|
|
|
|
#elif defined(__aarch64__)
|
|
|
|
__asm__ ("mrs %0, tpidr_el0" : "=r" (tid));
|
2023-12-05 05:03:32 -04:00
|
|
|
#elif defined(__powerpc64__)
|
|
|
|
#if defined(__clang__) && _Py__has_builtin(__builtin_thread_pointer)
|
|
|
|
tid = (uintptr_t)__builtin_thread_pointer();
|
|
|
|
#else
|
2023-12-05 06:44:19 -04:00
|
|
|
// r13 is reserved for use as system thread ID by the Power 64-bit ABI.
|
2023-12-05 05:03:32 -04:00
|
|
|
register uintptr_t tp __asm__ ("r13");
|
|
|
|
__asm__("" : "=r" (tp));
|
|
|
|
tid = tp;
|
|
|
|
#endif
|
|
|
|
#elif defined(__powerpc__)
|
|
|
|
#if defined(__clang__) && _Py__has_builtin(__builtin_thread_pointer)
|
|
|
|
tid = (uintptr_t)__builtin_thread_pointer();
|
|
|
|
#else
|
2023-12-05 06:44:19 -04:00
|
|
|
// r2 is reserved for use as system thread ID by the Power 32-bit ABI.
|
2023-12-05 05:03:32 -04:00
|
|
|
register uintptr_t tp __asm__ ("r2");
|
|
|
|
__asm__ ("" : "=r" (tp));
|
|
|
|
tid = tp;
|
|
|
|
#endif
|
2023-12-08 10:28:07 -04:00
|
|
|
#elif defined(__s390__) && defined(__GNUC__)
|
|
|
|
// Both GCC and Clang have supported __builtin_thread_pointer
|
|
|
|
// for s390 from long time ago.
|
|
|
|
tid = (uintptr_t)__builtin_thread_pointer();
|
2023-12-14 19:42:33 -04:00
|
|
|
#elif defined(__riscv)
|
|
|
|
#if defined(__clang__) && _Py__has_builtin(__builtin_thread_pointer)
|
|
|
|
tid = (uintptr_t)__builtin_thread_pointer();
|
|
|
|
#else
|
|
|
|
// tp is Thread Pointer provided by the RISC-V ABI.
|
|
|
|
__asm__ ("mv %0, tp" : "=r" (tid));
|
|
|
|
#endif
|
2023-10-30 13:06:09 -03:00
|
|
|
#else
|
2023-12-18 12:54:49 -04:00
|
|
|
// Fallback to a portable implementation if we do not have a faster
|
|
|
|
// platform-specific implementation.
|
|
|
|
tid = _Py_GetThreadLocal_Addr();
|
2023-10-30 13:06:09 -03:00
|
|
|
#endif
|
|
|
|
return tid;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline Py_ALWAYS_INLINE int
|
|
|
|
_Py_IsOwnedByCurrentThread(PyObject *ob)
|
|
|
|
{
|
2024-04-26 11:39:08 -03:00
|
|
|
#ifdef _Py_THREAD_SANITIZER
|
|
|
|
return _Py_atomic_load_uintptr_relaxed(&ob->ob_tid) == _Py_ThreadId();
|
|
|
|
#else
|
2023-10-30 13:06:09 -03:00
|
|
|
return ob->ob_tid == _Py_ThreadId();
|
2024-04-26 11:39:08 -03:00
|
|
|
#endif
|
2023-10-30 13:06:09 -03:00
|
|
|
}
|
|
|
|
#endif
|
2021-04-10 19:17:39 -03:00
|
|
|
|
2024-06-18 11:28:48 -03:00
|
|
|
// Py_TYPE() implementation for the stable ABI
|
|
|
|
PyAPI_FUNC(PyTypeObject*) Py_TYPE(PyObject *ob);
|
|
|
|
|
|
|
|
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030e0000
|
|
|
|
// Stable ABI implements Py_TYPE() as a function call
|
|
|
|
// on limited C API version 3.14 and newer.
|
2024-06-12 09:41:07 -03:00
|
|
|
#else
|
2024-06-18 11:28:48 -03:00
|
|
|
static inline PyTypeObject* _Py_TYPE(PyObject *ob)
|
|
|
|
{
|
|
|
|
return ob->ob_type;
|
|
|
|
}
|
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
|
|
|
|
# define Py_TYPE(ob) _Py_TYPE(_PyObject_CAST(ob))
|
|
|
|
#else
|
|
|
|
# define Py_TYPE(ob) _Py_TYPE(ob)
|
|
|
|
#endif
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2023-03-22 11:49:51 -03:00
|
|
|
PyAPI_DATA(PyTypeObject) PyLong_Type;
|
|
|
|
PyAPI_DATA(PyTypeObject) PyBool_Type;
|
|
|
|
|
2020-11-18 13:48:06 -04:00
|
|
|
// bpo-39573: The Py_SET_SIZE() function must be used to set an object size.
|
2022-05-11 19:49:03 -03:00
|
|
|
static inline Py_ssize_t Py_SIZE(PyObject *ob) {
|
2024-06-17 05:34:29 -03:00
|
|
|
assert(Py_TYPE(ob) != &PyLong_Type);
|
|
|
|
assert(Py_TYPE(ob) != &PyBool_Type);
|
2024-03-18 16:16:58 -03:00
|
|
|
return _PyVarObject_CAST(ob)->ob_size;
|
2021-09-08 06:59:13 -03:00
|
|
|
}
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
|
2022-05-11 19:49:03 -03:00
|
|
|
# define Py_SIZE(ob) Py_SIZE(_PyObject_CAST(ob))
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#endif
|
2020-05-25 13:52:54 -03:00
|
|
|
|
2022-04-21 17:07:19 -03:00
|
|
|
static inline int Py_IS_TYPE(PyObject *ob, PyTypeObject *type) {
|
|
|
|
return Py_TYPE(ob) == type;
|
2020-02-13 13:37:17 -04:00
|
|
|
}
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
|
2022-06-20 11:04:52 -03:00
|
|
|
# define Py_IS_TYPE(ob, type) Py_IS_TYPE(_PyObject_CAST(ob), (type))
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#endif
|
2020-02-13 13:37:17 -04:00
|
|
|
|
2020-05-27 09:55:10 -03:00
|
|
|
|
2022-02-11 12:01:10 -04:00
|
|
|
static inline void Py_SET_TYPE(PyObject *ob, PyTypeObject *type) {
|
2020-02-07 04:17:07 -04:00
|
|
|
ob->ob_type = type;
|
|
|
|
}
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
|
|
|
|
# define Py_SET_TYPE(ob, type) Py_SET_TYPE(_PyObject_CAST(ob), type)
|
|
|
|
#endif
|
2020-02-07 04:17:07 -04:00
|
|
|
|
2022-02-11 12:01:10 -04:00
|
|
|
static inline void Py_SET_SIZE(PyVarObject *ob, Py_ssize_t size) {
|
2024-06-17 05:34:29 -03:00
|
|
|
assert(Py_TYPE(_PyObject_CAST(ob)) != &PyLong_Type);
|
|
|
|
assert(Py_TYPE(_PyObject_CAST(ob)) != &PyBool_Type);
|
2024-01-31 19:58:08 -04:00
|
|
|
#ifdef Py_GIL_DISABLED
|
|
|
|
_Py_atomic_store_ssize_relaxed(&ob->ob_size, size);
|
|
|
|
#else
|
2020-02-13 13:34:45 -04:00
|
|
|
ob->ob_size = size;
|
2024-01-31 19:58:08 -04:00
|
|
|
#endif
|
2020-02-07 07:05:12 -04:00
|
|
|
}
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
|
2022-06-20 11:04:52 -03:00
|
|
|
# define Py_SET_SIZE(ob, size) Py_SET_SIZE(_PyVarObject_CAST(ob), (size))
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#endif
|
2020-02-07 07:05:12 -04:00
|
|
|
|
2020-02-07 04:17:07 -04:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/*
|
|
|
|
Type objects contain a string containing the type name (to help somewhat
|
2002-07-07 16:59:50 -03:00
|
|
|
in debugging), the allocation parameters (see PyObject_New() and
|
|
|
|
PyObject_NewVar()),
|
|
|
|
and methods for accessing objects of the type. Methods are optional, a
|
1990-10-14 09:07:46 -03:00
|
|
|
nil pointer meaning that particular kind of access is not available for
|
1995-01-12 07:45:45 -04:00
|
|
|
this type. The Py_DECREF() macro uses the tp_dealloc method without
|
1990-10-14 09:07:46 -03:00
|
|
|
checking for a nil pointer; it should always be implemented except if
|
|
|
|
the implementation can guarantee that the reference count will never
|
2002-07-07 16:59:50 -03:00
|
|
|
reach zero (e.g., for statically allocated type objects).
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
NB: the methods for certain type groups are now contained in separate
|
|
|
|
method blocks.
|
|
|
|
*/
|
|
|
|
|
2000-07-07 21:32:04 -03:00
|
|
|
typedef PyObject * (*unaryfunc)(PyObject *);
|
|
|
|
typedef PyObject * (*binaryfunc)(PyObject *, PyObject *);
|
|
|
|
typedef PyObject * (*ternaryfunc)(PyObject *, PyObject *, PyObject *);
|
|
|
|
typedef int (*inquiry)(PyObject *);
|
2006-02-15 13:27:45 -04:00
|
|
|
typedef Py_ssize_t (*lenfunc)(PyObject *);
|
|
|
|
typedef PyObject *(*ssizeargfunc)(PyObject *, Py_ssize_t);
|
|
|
|
typedef PyObject *(*ssizessizeargfunc)(PyObject *, Py_ssize_t, Py_ssize_t);
|
|
|
|
typedef int(*ssizeobjargproc)(PyObject *, Py_ssize_t, PyObject *);
|
|
|
|
typedef int(*ssizessizeobjargproc)(PyObject *, Py_ssize_t, Py_ssize_t, PyObject *);
|
2000-07-07 21:32:04 -03:00
|
|
|
typedef int(*objobjargproc)(PyObject *, PyObject *, PyObject *);
|
2006-02-15 13:27:45 -04:00
|
|
|
|
2000-07-07 21:32:04 -03:00
|
|
|
typedef int (*objobjproc)(PyObject *, PyObject *);
|
|
|
|
typedef int (*visitproc)(PyObject *, void *);
|
|
|
|
typedef int (*traverseproc)(PyObject *, visitproc, void *);
|
1994-08-01 08:34:53 -03:00
|
|
|
|
2002-07-07 02:13:56 -03:00
|
|
|
|
2002-04-11 22:57:06 -03:00
|
|
|
typedef void (*freefunc)(void *);
|
2000-07-07 21:32:04 -03:00
|
|
|
typedef void (*destructor)(PyObject *);
|
2006-02-27 12:46:16 -04:00
|
|
|
typedef PyObject *(*getattrfunc)(PyObject *, char *);
|
2000-07-07 21:32:04 -03:00
|
|
|
typedef PyObject *(*getattrofunc)(PyObject *, PyObject *);
|
2006-02-27 12:46:16 -04:00
|
|
|
typedef int (*setattrfunc)(PyObject *, char *, PyObject *);
|
2000-07-07 21:32:04 -03:00
|
|
|
typedef int (*setattrofunc)(PyObject *, PyObject *, PyObject *);
|
|
|
|
typedef PyObject *(*reprfunc)(PyObject *);
|
2010-10-17 17:54:53 -03:00
|
|
|
typedef Py_hash_t (*hashfunc)(PyObject *);
|
2001-01-17 11:20:39 -04:00
|
|
|
typedef PyObject *(*richcmpfunc) (PyObject *, PyObject *, int);
|
2001-04-20 16:13:02 -03:00
|
|
|
typedef PyObject *(*getiterfunc) (PyObject *);
|
2001-04-23 11:08:49 -03:00
|
|
|
typedef PyObject *(*iternextfunc) (PyObject *);
|
2001-08-02 01:15:00 -03:00
|
|
|
typedef PyObject *(*descrgetfunc) (PyObject *, PyObject *, PyObject *);
|
|
|
|
typedef int (*descrsetfunc) (PyObject *, PyObject *, PyObject *);
|
|
|
|
typedef int (*initproc)(PyObject *, PyObject *, PyObject *);
|
2020-02-05 10:10:39 -04:00
|
|
|
typedef PyObject *(*newfunc)(PyTypeObject *, PyObject *, PyObject *);
|
|
|
|
typedef PyObject *(*allocfunc)(PyTypeObject *, Py_ssize_t);
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2022-08-08 09:12:05 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030c0000 // 3.12
|
|
|
|
typedef PyObject *(*vectorcallfunc)(PyObject *callable, PyObject *const *args,
|
|
|
|
size_t nargsf, PyObject *kwnames);
|
|
|
|
#endif
|
|
|
|
|
2010-12-03 16:14:31 -04:00
|
|
|
typedef struct{
|
|
|
|
int slot; /* slot id, see below */
|
|
|
|
void *pfunc; /* function pointer */
|
|
|
|
} PyType_Slot;
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2010-12-03 16:14:31 -04:00
|
|
|
typedef struct{
|
|
|
|
const char* name;
|
|
|
|
int basicsize;
|
|
|
|
int itemsize;
|
2012-10-30 19:40:45 -03:00
|
|
|
unsigned int flags;
|
2010-12-03 16:14:31 -04:00
|
|
|
PyType_Slot *slots; /* terminated by slot==0. */
|
|
|
|
} PyType_Spec;
|
|
|
|
|
|
|
|
PyAPI_FUNC(PyObject*) PyType_FromSpec(PyType_Spec*);
|
2012-06-23 18:20:45 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
|
|
|
|
PyAPI_FUNC(PyObject*) PyType_FromSpecWithBases(PyType_Spec*, PyObject*);
|
|
|
|
#endif
|
2014-02-04 04:33:05 -04:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03040000
|
2020-02-05 10:10:39 -04:00
|
|
|
PyAPI_FUNC(void*) PyType_GetSlot(PyTypeObject*, int);
|
2014-02-04 04:33:05 -04:00
|
|
|
#endif
|
2020-05-07 10:39:59 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03090000
|
|
|
|
PyAPI_FUNC(PyObject*) PyType_FromModuleAndSpec(PyObject *, PyType_Spec *, PyObject *);
|
2022-02-24 12:51:59 -04:00
|
|
|
PyAPI_FUNC(PyObject *) PyType_GetModule(PyTypeObject *);
|
|
|
|
PyAPI_FUNC(void *) PyType_GetModuleState(PyTypeObject *);
|
2020-05-07 10:39:59 -03:00
|
|
|
#endif
|
2021-07-29 04:57:02 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030B0000
|
|
|
|
PyAPI_FUNC(PyObject *) PyType_GetName(PyTypeObject *);
|
2021-08-17 10:39:34 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyType_GetQualName(PyTypeObject *);
|
2021-07-29 04:57:02 -03:00
|
|
|
#endif
|
2024-03-14 13:19:36 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030D0000
|
2024-03-14 15:17:43 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyType_GetFullyQualifiedName(PyTypeObject *type);
|
|
|
|
PyAPI_FUNC(PyObject *) PyType_GetModuleName(PyTypeObject *type);
|
2024-03-14 13:19:36 -03:00
|
|
|
#endif
|
2022-05-27 05:27:39 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030C0000
|
|
|
|
PyAPI_FUNC(PyObject *) PyType_FromMetaclass(PyTypeObject*, PyObject*, PyType_Spec*, PyObject*);
|
2023-05-04 04:56:53 -03:00
|
|
|
PyAPI_FUNC(void *) PyObject_GetTypeData(PyObject *obj, PyTypeObject *cls);
|
|
|
|
PyAPI_FUNC(Py_ssize_t) PyType_GetTypeDataSize(PyTypeObject *cls);
|
2022-05-27 05:27:39 -03:00
|
|
|
#endif
|
2010-12-03 16:14:31 -04:00
|
|
|
|
2001-08-02 01:15:00 -03:00
|
|
|
/* Generic type check */
|
2020-02-05 10:10:39 -04:00
|
|
|
PyAPI_FUNC(int) PyType_IsSubtype(PyTypeObject *, PyTypeObject *);
|
2021-02-15 12:19:24 -04:00
|
|
|
|
2022-02-11 12:01:10 -04:00
|
|
|
static inline int PyObject_TypeCheck(PyObject *ob, PyTypeObject *type) {
|
2021-02-15 12:19:24 -04:00
|
|
|
return Py_IS_TYPE(ob, type) || PyType_IsSubtype(Py_TYPE(ob), type);
|
|
|
|
}
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
|
2022-06-20 11:04:52 -03:00
|
|
|
# define PyObject_TypeCheck(ob, type) PyObject_TypeCheck(_PyObject_CAST(ob), (type))
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#endif
|
2001-08-02 01:15:00 -03:00
|
|
|
|
2020-02-05 10:10:39 -04:00
|
|
|
PyAPI_DATA(PyTypeObject) PyType_Type; /* built-in 'type' */
|
|
|
|
PyAPI_DATA(PyTypeObject) PyBaseObject_Type; /* built-in 'object' */
|
|
|
|
PyAPI_DATA(PyTypeObject) PySuper_Type; /* built-in 'super' */
|
2001-08-02 01:15:00 -03:00
|
|
|
|
2020-02-05 10:10:39 -04:00
|
|
|
PyAPI_FUNC(unsigned long) PyType_GetFlags(PyTypeObject*);
|
2011-02-05 16:35:29 -04:00
|
|
|
|
2020-02-05 10:10:39 -04:00
|
|
|
PyAPI_FUNC(int) PyType_Ready(PyTypeObject *);
|
|
|
|
PyAPI_FUNC(PyObject *) PyType_GenericAlloc(PyTypeObject *, Py_ssize_t);
|
|
|
|
PyAPI_FUNC(PyObject *) PyType_GenericNew(PyTypeObject *,
|
2010-05-09 12:52:27 -03:00
|
|
|
PyObject *, PyObject *);
|
2008-01-27 19:50:43 -04:00
|
|
|
PyAPI_FUNC(unsigned int) PyType_ClearCache(void);
|
2020-02-05 10:10:39 -04:00
|
|
|
PyAPI_FUNC(void) PyType_Modified(PyTypeObject *);
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1990-12-20 11:06:42 -04:00
|
|
|
/* Generic operations on objects */
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyObject_Repr(PyObject *);
|
|
|
|
PyAPI_FUNC(PyObject *) PyObject_Str(PyObject *);
|
2008-06-11 15:37:52 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyObject_ASCII(PyObject *);
|
2008-08-26 13:46:47 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyObject_Bytes(PyObject *);
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int);
|
|
|
|
PyAPI_FUNC(int) PyObject_RichCompareBool(PyObject *, PyObject *, int);
|
2005-12-10 14:50:16 -04:00
|
|
|
PyAPI_FUNC(PyObject *) PyObject_GetAttrString(PyObject *, const char *);
|
|
|
|
PyAPI_FUNC(int) PyObject_SetAttrString(PyObject *, const char *, PyObject *);
|
2023-07-11 06:38:22 -03:00
|
|
|
PyAPI_FUNC(int) PyObject_DelAttrString(PyObject *v, const char *name);
|
2005-12-10 14:50:16 -04:00
|
|
|
PyAPI_FUNC(int) PyObject_HasAttrString(PyObject *, const char *);
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyObject_GetAttr(PyObject *, PyObject *);
|
2023-07-11 16:13:27 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
|
|
|
|
PyAPI_FUNC(int) PyObject_GetOptionalAttr(PyObject *, PyObject *, PyObject **);
|
|
|
|
PyAPI_FUNC(int) PyObject_GetOptionalAttrString(PyObject *, const char *, PyObject **);
|
|
|
|
#endif
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_FUNC(int) PyObject_SetAttr(PyObject *, PyObject *, PyObject *);
|
2023-07-11 06:38:22 -03:00
|
|
|
PyAPI_FUNC(int) PyObject_DelAttr(PyObject *v, PyObject *name);
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_FUNC(int) PyObject_HasAttr(PyObject *, PyObject *);
|
2023-09-17 08:23:31 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
|
|
|
|
PyAPI_FUNC(int) PyObject_HasAttrWithError(PyObject *, PyObject *);
|
|
|
|
PyAPI_FUNC(int) PyObject_HasAttrStringWithError(PyObject *, const char *);
|
|
|
|
#endif
|
2003-03-17 15:46:11 -04:00
|
|
|
PyAPI_FUNC(PyObject *) PyObject_SelfIter(PyObject *);
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyObject_GenericGetAttr(PyObject *, PyObject *);
|
2020-02-05 08:12:19 -04:00
|
|
|
PyAPI_FUNC(int) PyObject_GenericSetAttr(PyObject *, PyObject *, PyObject *);
|
2016-12-27 08:57:39 -04:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
|
2012-02-19 20:59:10 -04:00
|
|
|
PyAPI_FUNC(int) PyObject_GenericSetDict(PyObject *, PyObject *, void *);
|
2016-12-27 08:57:39 -04:00
|
|
|
#endif
|
2010-10-17 17:54:53 -03:00
|
|
|
PyAPI_FUNC(Py_hash_t) PyObject_Hash(PyObject *);
|
|
|
|
PyAPI_FUNC(Py_hash_t) PyObject_HashNotImplemented(PyObject *);
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_FUNC(int) PyObject_IsTrue(PyObject *);
|
|
|
|
PyAPI_FUNC(int) PyObject_Not(PyObject *);
|
|
|
|
PyAPI_FUNC(int) PyCallable_Check(PyObject *);
|
|
|
|
PyAPI_FUNC(void) PyObject_ClearWeakRefs(PyObject *);
|
2001-09-18 17:38:53 -03:00
|
|
|
|
2007-12-02 05:40:06 -04:00
|
|
|
/* PyObject_Dir(obj) acts like Python builtins.dir(obj), returning a
|
|
|
|
list of strings. PyObject_Dir(NULL) is like builtins.dir(),
|
2001-09-04 19:08:56 -03:00
|
|
|
returning the names of the current locals. In this case, if there are
|
|
|
|
no current locals, NULL is returned, and PyErr_Occurred() is false.
|
|
|
|
*/
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_FUNC(PyObject *) PyObject_Dir(PyObject *);
|
2001-09-04 19:08:56 -03:00
|
|
|
|
1998-04-10 19:32:24 -03:00
|
|
|
/* Helpers for printing recursive container types */
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_FUNC(int) Py_ReprEnter(PyObject *);
|
|
|
|
PyAPI_FUNC(void) Py_ReprLeave(PyObject *);
|
1998-04-10 19:32:24 -03:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Flag bits for printing: */
|
2010-05-09 12:52:27 -03:00
|
|
|
#define Py_PRINT_RAW 1 /* No string quotes etc. */
|
1990-10-14 09:07:46 -03:00
|
|
|
|
Changes by Greg Stein (code) and GvR (design).
Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For
backward compatibility, this member should only be used (this includes
testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set
in the type structure, below. Note that if its flag is not set, we
may be looking at an extension module compiled for 1.5.1, which will
have garbage at the bf_getcharbuffer member (because the struct wasn't
as long then). If the flag is one, the pointer may still be NULL.
The function found at this member is used in a similar manner as
bf_getreadbuffer, but it is known to point to 8-bit character data.
(See discussion in getargs.c checked in later.)
As a general feature for extending the type structure and the various
structures that (may) hang off it in a backwards compatible way, we
rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before,
this slot was always zero. In 1.5.1, it may contain various flags
indicating extra fields that weren't present in 1.5.1. The only flag
defined so far is for the bf_getcharbuffer member of the PyBufferProcs
struct.
Note that the new spares (tp_xxx5 - tp_xxx8), once they become used,
should also be protected by a flag (or flags) in tp_flags.
1998-10-07 23:10:56 -03:00
|
|
|
/*
|
2019-05-29 17:12:38 -03:00
|
|
|
Type flags (tp_flags)
|
Changes by Greg Stein (code) and GvR (design).
Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For
backward compatibility, this member should only be used (this includes
testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set
in the type structure, below. Note that if its flag is not set, we
may be looking at an extension module compiled for 1.5.1, which will
have garbage at the bf_getcharbuffer member (because the struct wasn't
as long then). If the flag is one, the pointer may still be NULL.
The function found at this member is used in a similar manner as
bf_getreadbuffer, but it is known to point to 8-bit character data.
(See discussion in getargs.c checked in later.)
As a general feature for extending the type structure and the various
structures that (may) hang off it in a backwards compatible way, we
rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before,
this slot was always zero. In 1.5.1, it may contain various flags
indicating extra fields that weren't present in 1.5.1. The only flag
defined so far is for the bf_getcharbuffer member of the PyBufferProcs
struct.
Note that the new spares (tp_xxx5 - tp_xxx8), once they become used,
should also be protected by a flag (or flags) in tp_flags.
1998-10-07 23:10:56 -03:00
|
|
|
|
2019-05-29 17:12:38 -03:00
|
|
|
These flags are used to change expected features and behavior for a
|
|
|
|
particular type.
|
Changes by Greg Stein (code) and GvR (design).
Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For
backward compatibility, this member should only be used (this includes
testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set
in the type structure, below. Note that if its flag is not set, we
may be looking at an extension module compiled for 1.5.1, which will
have garbage at the bf_getcharbuffer member (because the struct wasn't
as long then). If the flag is one, the pointer may still be NULL.
The function found at this member is used in a similar manner as
bf_getreadbuffer, but it is known to point to 8-bit character data.
(See discussion in getargs.c checked in later.)
As a general feature for extending the type structure and the various
structures that (may) hang off it in a backwards compatible way, we
rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before,
this slot was always zero. In 1.5.1, it may contain various flags
indicating extra fields that weren't present in 1.5.1. The only flag
defined so far is for the bf_getcharbuffer member of the PyBufferProcs
struct.
Note that the new spares (tp_xxx5 - tp_xxx8), once they become used,
should also be protected by a flag (or flags) in tp_flags.
1998-10-07 23:10:56 -03:00
|
|
|
|
|
|
|
Arbitration of the flag bit positions will need to be coordinated among
|
2017-11-05 09:37:50 -04:00
|
|
|
all extension writers who publicly release their extensions (this will
|
2019-05-29 17:12:38 -03:00
|
|
|
be fewer than you might expect!).
|
Changes by Greg Stein (code) and GvR (design).
Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For
backward compatibility, this member should only be used (this includes
testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set
in the type structure, below. Note that if its flag is not set, we
may be looking at an extension module compiled for 1.5.1, which will
have garbage at the bf_getcharbuffer member (because the struct wasn't
as long then). If the flag is one, the pointer may still be NULL.
The function found at this member is used in a similar manner as
bf_getreadbuffer, but it is known to point to 8-bit character data.
(See discussion in getargs.c checked in later.)
As a general feature for extending the type structure and the various
structures that (may) hang off it in a backwards compatible way, we
rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before,
this slot was always zero. In 1.5.1, it may contain various flags
indicating extra fields that weren't present in 1.5.1. The only flag
defined so far is for the bf_getcharbuffer member of the PyBufferProcs
struct.
Note that the new spares (tp_xxx5 - tp_xxx8), once they become used,
should also be protected by a flag (or flags) in tp_flags.
1998-10-07 23:10:56 -03:00
|
|
|
|
2006-07-27 18:53:35 -03:00
|
|
|
Most flags were removed as of Python 3.0 to make room for new flags. (Some
|
|
|
|
flags are not for backwards compatibility but to indicate the presence of an
|
|
|
|
optional feature; these flags remain of course.)
|
Changes by Greg Stein (code) and GvR (design).
Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For
backward compatibility, this member should only be used (this includes
testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set
in the type structure, below. Note that if its flag is not set, we
may be looking at an extension module compiled for 1.5.1, which will
have garbage at the bf_getcharbuffer member (because the struct wasn't
as long then). If the flag is one, the pointer may still be NULL.
The function found at this member is used in a similar manner as
bf_getreadbuffer, but it is known to point to 8-bit character data.
(See discussion in getargs.c checked in later.)
As a general feature for extending the type structure and the various
structures that (may) hang off it in a backwards compatible way, we
rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before,
this slot was always zero. In 1.5.1, it may contain various flags
indicating extra fields that weren't present in 1.5.1. The only flag
defined so far is for the bf_getcharbuffer member of the PyBufferProcs
struct.
Note that the new spares (tp_xxx5 - tp_xxx8), once they become used,
should also be protected by a flag (or flags) in tp_flags.
1998-10-07 23:10:56 -03:00
|
|
|
|
|
|
|
Type definitions should use Py_TPFLAGS_DEFAULT for their tp_flags value.
|
|
|
|
|
|
|
|
Code can use PyType_HasFeature(type_ob, flag_value) to test whether the
|
|
|
|
given type object has a specified feature.
|
|
|
|
*/
|
|
|
|
|
2021-04-30 05:50:28 -03:00
|
|
|
#ifndef Py_LIMITED_API
|
2021-10-13 10:19:34 -03:00
|
|
|
|
2022-07-25 15:47:31 -03:00
|
|
|
/* Track types initialized using _PyStaticType_InitBuiltin(). */
|
|
|
|
#define _Py_TPFLAGS_STATIC_BUILTIN (1 << 1)
|
|
|
|
|
2024-04-02 07:59:21 -03:00
|
|
|
/* The values array is placed inline directly after the rest of
|
|
|
|
* the object. Implies Py_TPFLAGS_HAVE_GC.
|
|
|
|
*/
|
|
|
|
#define Py_TPFLAGS_INLINE_VALUES (1 << 2)
|
|
|
|
|
2022-08-16 09:57:18 -03:00
|
|
|
/* Placement of weakref pointers are managed by the VM, not by the type.
|
|
|
|
* The VM will automatically set tp_weaklistoffset.
|
|
|
|
*/
|
|
|
|
#define Py_TPFLAGS_MANAGED_WEAKREF (1 << 3)
|
|
|
|
|
2021-12-07 12:02:53 -04:00
|
|
|
/* Placement of dict (and values) pointers are managed by the VM, not by the type.
|
2024-04-02 07:59:21 -03:00
|
|
|
* The VM will automatically set tp_dictoffset. Implies Py_TPFLAGS_HAVE_GC.
|
2021-12-07 12:02:53 -04:00
|
|
|
*/
|
|
|
|
#define Py_TPFLAGS_MANAGED_DICT (1 << 4)
|
|
|
|
|
2022-08-16 09:57:18 -03:00
|
|
|
#define Py_TPFLAGS_PREHEADER (Py_TPFLAGS_MANAGED_WEAKREF | Py_TPFLAGS_MANAGED_DICT)
|
|
|
|
|
2021-04-30 05:50:28 -03:00
|
|
|
/* Set if instances of the type object are treated as sequences for pattern matching */
|
|
|
|
#define Py_TPFLAGS_SEQUENCE (1 << 5)
|
|
|
|
/* Set if instances of the type object are treated as mappings for pattern matching */
|
|
|
|
#define Py_TPFLAGS_MAPPING (1 << 6)
|
|
|
|
#endif
|
|
|
|
|
2021-04-30 07:46:15 -03:00
|
|
|
/* Disallow creating instances of the type: set tp_new to NULL and don't create
|
|
|
|
* the "__new__" key in the type dictionary. */
|
|
|
|
#define Py_TPFLAGS_DISALLOW_INSTANTIATION (1UL << 7)
|
|
|
|
|
2021-04-28 14:02:42 -03:00
|
|
|
/* Set if the type object is immutable: type attributes cannot be set nor deleted */
|
|
|
|
#define Py_TPFLAGS_IMMUTABLETYPE (1UL << 8)
|
|
|
|
|
2001-08-02 01:15:00 -03:00
|
|
|
/* Set if the type object is dynamically allocated */
|
2012-10-30 19:40:45 -03:00
|
|
|
#define Py_TPFLAGS_HEAPTYPE (1UL << 9)
|
2001-08-02 01:15:00 -03:00
|
|
|
|
|
|
|
/* Set if the type allows subclassing */
|
2012-10-30 19:40:45 -03:00
|
|
|
#define Py_TPFLAGS_BASETYPE (1UL << 10)
|
2001-08-02 01:15:00 -03:00
|
|
|
|
2019-05-29 15:31:52 -03:00
|
|
|
/* Set if the type implements the vectorcall protocol (PEP 590) */
|
2022-08-08 09:12:05 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030C0000
|
2020-02-06 10:48:27 -04:00
|
|
|
#define Py_TPFLAGS_HAVE_VECTORCALL (1UL << 11)
|
2022-08-08 09:12:05 -03:00
|
|
|
#ifndef Py_LIMITED_API
|
2020-02-06 10:48:27 -04:00
|
|
|
// Backwards compatibility alias for API that was provisional in Python 3.8
|
|
|
|
#define _Py_TPFLAGS_HAVE_VECTORCALL Py_TPFLAGS_HAVE_VECTORCALL
|
2019-05-29 15:31:52 -03:00
|
|
|
#endif
|
2022-08-08 09:12:05 -03:00
|
|
|
#endif
|
2019-05-29 15:31:52 -03:00
|
|
|
|
2001-08-10 14:37:02 -03:00
|
|
|
/* Set if the type is 'ready' -- fully initialized */
|
2012-10-30 19:40:45 -03:00
|
|
|
#define Py_TPFLAGS_READY (1UL << 12)
|
2001-08-10 14:37:02 -03:00
|
|
|
|
|
|
|
/* Set while the type is being 'readied', to prevent recursive ready calls */
|
2012-10-30 19:40:45 -03:00
|
|
|
#define Py_TPFLAGS_READYING (1UL << 13)
|
2001-08-10 14:37:02 -03:00
|
|
|
|
2019-05-29 17:12:38 -03:00
|
|
|
/* Objects support garbage collection (see objimpl.h) */
|
2012-10-30 19:40:45 -03:00
|
|
|
#define Py_TPFLAGS_HAVE_GC (1UL << 14)
|
2001-08-29 20:46:35 -03:00
|
|
|
|
2006-03-07 14:50:55 -04:00
|
|
|
/* These two bits are preserved for Stackless Python, next after this is 17 */
|
2003-05-20 12:14:31 -03:00
|
|
|
#ifdef STACKLESS
|
2012-10-30 19:40:45 -03:00
|
|
|
#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION (3UL << 15)
|
2003-05-20 12:14:31 -03:00
|
|
|
#else
|
2003-05-23 00:33:35 -03:00
|
|
|
#define Py_TPFLAGS_HAVE_STACKLESS_EXTENSION 0
|
2003-05-20 12:14:31 -03:00
|
|
|
#endif
|
|
|
|
|
2019-05-28 09:42:53 -03:00
|
|
|
/* Objects behave like an unbound method */
|
|
|
|
#define Py_TPFLAGS_METHOD_DESCRIPTOR (1UL << 17)
|
|
|
|
|
2024-06-19 13:38:45 -03:00
|
|
|
/* Unused. Legacy flag */
|
2012-10-30 19:40:45 -03:00
|
|
|
#define Py_TPFLAGS_VALID_VERSION_TAG (1UL << 19)
|
Merged revisions 59921-59932 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r59923 | raymond.hettinger | 2008-01-11 19:04:55 +0100 (Fri, 11 Jan 2008) | 1 line
Speed-up and simplify code urlparse's result objects.
........
r59924 | andrew.kuchling | 2008-01-11 20:33:24 +0100 (Fri, 11 Jan 2008) | 1 line
Bug #1790: update link; remove outdated paragraph
........
r59925 | thomas.heller | 2008-01-11 20:34:06 +0100 (Fri, 11 Jan 2008) | 5 lines
Raise an error instead of crashing with a segfault when a NULL
function pointer is called.
Will backport to release25-maint.
........
r59927 | thomas.heller | 2008-01-11 21:29:19 +0100 (Fri, 11 Jan 2008) | 4 lines
Fix a potential 'SystemError: NULL result without error'.
NULL may be a valid return value from PyLong_AsVoidPtr.
Will backport to release25-maint.
........
r59928 | raymond.hettinger | 2008-01-12 00:25:18 +0100 (Sat, 12 Jan 2008) | 1 line
Update the opcode docs for STORE_MAP and BUILD_MAP
........
r59929 | mark.dickinson | 2008-01-12 02:56:00 +0100 (Sat, 12 Jan 2008) | 4 lines
Issue 1780: Allow leading and trailing whitespace in Decimal constructor,
when constructing from a string. Disallow trailing newlines in
Context.create_decimal.
........
r59930 | georg.brandl | 2008-01-12 11:53:29 +0100 (Sat, 12 Jan 2008) | 3 lines
Move OSError docs to exceptions doc, remove obsolete descriptions
from os docs, rework posix docs.
........
r59931 | georg.brandl | 2008-01-12 14:47:57 +0100 (Sat, 12 Jan 2008) | 3 lines
Patch #1700288: Method cache optimization, by Armin Rigo, ported to
2.6 by Kevin Jacobs.
........
r59932 | georg.brandl | 2008-01-12 17:11:09 +0100 (Sat, 12 Jan 2008) | 2 lines
Fix editing glitch.
........
2008-01-12 15:39:10 -04:00
|
|
|
|
Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61103 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61098 | jeffrey.yasskin | 2008-02-28 05:45:36 +0100 (Thu, 28 Feb 2008) | 7 lines
Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT,
which forbids constructing types that have it set. The effect is to speed
./python.exe -m timeit -s 'import abc' -s 'class Foo(object): __metaclass__ = abc.ABCMeta' 'Foo()'
up from 2.5us to 0.201us. This fixes issue 1762.
........
r61099 | jeffrey.yasskin | 2008-02-28 06:53:18 +0100 (Thu, 28 Feb 2008) | 3 lines
Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and make
sure all tests run even if some fail.
........
r61100 | jeffrey.yasskin | 2008-02-28 07:09:19 +0100 (Thu, 28 Feb 2008) | 21 lines
Thread.start() used sleep(0.000001) to make sure it didn't return before the
new thread had started. At least on my MacBook Pro, that wound up sleeping for
a full 10ms (probably 1 jiffy). By using an Event instead, we can be absolutely
certain that the thread has started, and return more quickly (217us).
Before:
$ ./python.exe -m timeit -s 'from threading import Thread' 't = Thread(); t.start(); t.join()'
100 loops, best of 3: 10.3 msec per loop
$ ./python.exe -m timeit -s 'from threading import Thread; t = Thread()' 't.isAlive()'
1000000 loops, best of 3: 0.47 usec per loop
After:
$ ./python.exe -m timeit -s 'from threading import Thread' 't = Thread(); t.start(); t.join()'
1000 loops, best of 3: 217 usec per loop
$ ./python.exe -m timeit -s 'from threading import Thread; t = Thread()' 't.isAlive()'
1000000 loops, best of 3: 0.86 usec per loop
To be fair, the 10ms isn't CPU time, and other threads including the spawned
one get to run during it. There are also some slightly more complicated ways to
get back the .4us in isAlive() if we want.
........
r61101 | raymond.hettinger | 2008-02-28 10:23:48 +0100 (Thu, 28 Feb 2008) | 1 line
Add repeat keyword argument to itertools.product().
........
r61102 | christian.heimes | 2008-02-28 12:18:49 +0100 (Thu, 28 Feb 2008) | 1 line
The empty tuple is usually a singleton with a much higher refcnt than 1
........
2008-02-28 08:27:11 -04:00
|
|
|
/* Type is abstract and cannot be instantiated */
|
2012-10-30 19:40:45 -03:00
|
|
|
#define Py_TPFLAGS_IS_ABSTRACT (1UL << 20)
|
Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61103 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r61098 | jeffrey.yasskin | 2008-02-28 05:45:36 +0100 (Thu, 28 Feb 2008) | 7 lines
Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT,
which forbids constructing types that have it set. The effect is to speed
./python.exe -m timeit -s 'import abc' -s 'class Foo(object): __metaclass__ = abc.ABCMeta' 'Foo()'
up from 2.5us to 0.201us. This fixes issue 1762.
........
r61099 | jeffrey.yasskin | 2008-02-28 06:53:18 +0100 (Thu, 28 Feb 2008) | 3 lines
Speed test_socketserver up from 28.739s to 0.226s, simplify the logic, and make
sure all tests run even if some fail.
........
r61100 | jeffrey.yasskin | 2008-02-28 07:09:19 +0100 (Thu, 28 Feb 2008) | 21 lines
Thread.start() used sleep(0.000001) to make sure it didn't return before the
new thread had started. At least on my MacBook Pro, that wound up sleeping for
a full 10ms (probably 1 jiffy). By using an Event instead, we can be absolutely
certain that the thread has started, and return more quickly (217us).
Before:
$ ./python.exe -m timeit -s 'from threading import Thread' 't = Thread(); t.start(); t.join()'
100 loops, best of 3: 10.3 msec per loop
$ ./python.exe -m timeit -s 'from threading import Thread; t = Thread()' 't.isAlive()'
1000000 loops, best of 3: 0.47 usec per loop
After:
$ ./python.exe -m timeit -s 'from threading import Thread' 't = Thread(); t.start(); t.join()'
1000 loops, best of 3: 217 usec per loop
$ ./python.exe -m timeit -s 'from threading import Thread; t = Thread()' 't.isAlive()'
1000000 loops, best of 3: 0.86 usec per loop
To be fair, the 10ms isn't CPU time, and other threads including the spawned
one get to run during it. There are also some slightly more complicated ways to
get back the .4us in isAlive() if we want.
........
r61101 | raymond.hettinger | 2008-02-28 10:23:48 +0100 (Thu, 28 Feb 2008) | 1 line
Add repeat keyword argument to itertools.product().
........
r61102 | christian.heimes | 2008-02-28 12:18:49 +0100 (Thu, 28 Feb 2008) | 1 line
The empty tuple is usually a singleton with a much higher refcnt than 1
........
2008-02-28 08:27:11 -04:00
|
|
|
|
2021-02-26 18:51:55 -04:00
|
|
|
// This undocumented flag gives certain built-ins their unique pattern-matching
|
|
|
|
// behavior, which allows a single positional subpattern to match against the
|
|
|
|
// subject itself (rather than a mapped attribute on it):
|
|
|
|
#define _Py_TPFLAGS_MATCH_SELF (1UL << 22)
|
|
|
|
|
2023-05-04 04:56:53 -03:00
|
|
|
/* Items (ob_size*tp_itemsize) are found at the end of an instance's memory */
|
|
|
|
#define Py_TPFLAGS_ITEMS_AT_END (1UL << 23)
|
|
|
|
|
2007-02-25 16:39:11 -04:00
|
|
|
/* These flags are used to determine if a type is a subclass. */
|
2012-10-30 19:40:45 -03:00
|
|
|
#define Py_TPFLAGS_LONG_SUBCLASS (1UL << 24)
|
|
|
|
#define Py_TPFLAGS_LIST_SUBCLASS (1UL << 25)
|
|
|
|
#define Py_TPFLAGS_TUPLE_SUBCLASS (1UL << 26)
|
|
|
|
#define Py_TPFLAGS_BYTES_SUBCLASS (1UL << 27)
|
|
|
|
#define Py_TPFLAGS_UNICODE_SUBCLASS (1UL << 28)
|
|
|
|
#define Py_TPFLAGS_DICT_SUBCLASS (1UL << 29)
|
|
|
|
#define Py_TPFLAGS_BASE_EXC_SUBCLASS (1UL << 30)
|
|
|
|
#define Py_TPFLAGS_TYPE_SUBCLASS (1UL << 31)
|
2007-02-25 16:39:11 -04:00
|
|
|
|
2001-01-24 18:13:48 -04:00
|
|
|
#define Py_TPFLAGS_DEFAULT ( \
|
2010-05-09 12:52:27 -03:00
|
|
|
Py_TPFLAGS_HAVE_STACKLESS_EXTENSION | \
|
|
|
|
0)
|
Changes by Greg Stein (code) and GvR (design).
Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For
backward compatibility, this member should only be used (this includes
testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set
in the type structure, below. Note that if its flag is not set, we
may be looking at an extension module compiled for 1.5.1, which will
have garbage at the bf_getcharbuffer member (because the struct wasn't
as long then). If the flag is one, the pointer may still be NULL.
The function found at this member is used in a similar manner as
bf_getreadbuffer, but it is known to point to 8-bit character data.
(See discussion in getargs.c checked in later.)
As a general feature for extending the type structure and the various
structures that (may) hang off it in a backwards compatible way, we
rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before,
this slot was always zero. In 1.5.1, it may contain various flags
indicating extra fields that weren't present in 1.5.1. The only flag
defined so far is for the bf_getcharbuffer member of the PyBufferProcs
struct.
Note that the new spares (tp_xxx5 - tp_xxx8), once they become used,
should also be protected by a flag (or flags) in tp_flags.
1998-10-07 23:10:56 -03:00
|
|
|
|
2021-07-23 10:21:11 -03:00
|
|
|
/* NOTE: Some of the following flags reuse lower bits (removed as part of the
|
2013-07-30 14:59:21 -03:00
|
|
|
* Python 3.0 transition). */
|
|
|
|
|
2021-07-23 10:21:11 -03:00
|
|
|
/* The following flags are kept for compatibility; in previous
|
|
|
|
* versions they indicated presence of newer tp_* fields on the
|
|
|
|
* type struct.
|
|
|
|
* Starting with 3.8, binary compatibility of C extensions across
|
|
|
|
* feature releases of Python is not supported anymore (except when
|
|
|
|
* using the stable ABI, in which all classes are created dynamically,
|
|
|
|
* using the interpreter's memory layout.)
|
|
|
|
* Note that older extensions using the stable ABI set these flags,
|
|
|
|
* so the bits must not be repurposed.
|
2019-05-29 17:12:38 -03:00
|
|
|
*/
|
2013-07-30 14:59:21 -03:00
|
|
|
#define Py_TPFLAGS_HAVE_FINALIZE (1UL << 0)
|
2021-07-23 10:21:11 -03:00
|
|
|
#define Py_TPFLAGS_HAVE_VERSION_TAG (1UL << 18)
|
2013-07-30 14:59:21 -03:00
|
|
|
|
Changes by Greg Stein (code) and GvR (design).
Add a new member to the PyBufferProcs struct, bf_getcharbuffer. For
backward compatibility, this member should only be used (this includes
testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set
in the type structure, below. Note that if its flag is not set, we
may be looking at an extension module compiled for 1.5.1, which will
have garbage at the bf_getcharbuffer member (because the struct wasn't
as long then). If the flag is one, the pointer may still be NULL.
The function found at this member is used in a similar manner as
bf_getreadbuffer, but it is known to point to 8-bit character data.
(See discussion in getargs.c checked in later.)
As a general feature for extending the type structure and the various
structures that (may) hang off it in a backwards compatible way, we
rename the tp_xxx4 "spare" slot to tp_flags. In 1.5.1 and before,
this slot was always zero. In 1.5.1, it may contain various flags
indicating extra fields that weren't present in 1.5.1. The only flag
defined so far is for the bf_getcharbuffer member of the PyBufferProcs
struct.
Note that the new spares (tp_xxx5 - tp_xxx8), once they become used,
should also be protected by a flag (or flags) in tp_flags.
1998-10-07 23:10:56 -03:00
|
|
|
|
2024-03-21 13:07:00 -03:00
|
|
|
#define Py_CONSTANT_NONE 0
|
|
|
|
#define Py_CONSTANT_FALSE 1
|
|
|
|
#define Py_CONSTANT_TRUE 2
|
|
|
|
#define Py_CONSTANT_ELLIPSIS 3
|
|
|
|
#define Py_CONSTANT_NOT_IMPLEMENTED 4
|
|
|
|
#define Py_CONSTANT_ZERO 5
|
|
|
|
#define Py_CONSTANT_ONE 6
|
|
|
|
#define Py_CONSTANT_EMPTY_STR 7
|
|
|
|
#define Py_CONSTANT_EMPTY_BYTES 8
|
|
|
|
#define Py_CONSTANT_EMPTY_TUPLE 9
|
|
|
|
|
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
|
|
|
|
PyAPI_FUNC(PyObject*) Py_GetConstant(unsigned int constant_id);
|
|
|
|
PyAPI_FUNC(PyObject*) Py_GetConstantBorrowed(unsigned int constant_id);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/*
|
1995-01-12 07:45:45 -04:00
|
|
|
_Py_NoneStruct is an object of undefined type which can be used in contexts
|
1990-10-14 09:07:46 -03:00
|
|
|
where NULL (nil) is not suitable (since NULL often means 'error').
|
|
|
|
*/
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_DATA(PyObject) _Py_NoneStruct; /* Don't use this directly */
|
2024-03-21 13:07:00 -03:00
|
|
|
|
|
|
|
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030D0000
|
|
|
|
# define Py_None Py_GetConstantBorrowed(Py_CONSTANT_NONE)
|
|
|
|
#else
|
|
|
|
# define Py_None (&_Py_NoneStruct)
|
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2021-04-10 19:17:39 -03:00
|
|
|
// Test if an object is the None singleton, the same as "x is None" in Python.
|
|
|
|
PyAPI_FUNC(int) Py_IsNone(PyObject *x);
|
|
|
|
#define Py_IsNone(x) Py_Is((x), Py_None)
|
|
|
|
|
2003-10-19 18:19:40 -03:00
|
|
|
/* Macro for returning Py_None from a function */
|
2023-04-22 16:39:37 -03:00
|
|
|
#define Py_RETURN_NONE return Py_None
|
2003-10-19 18:19:40 -03:00
|
|
|
|
2001-01-03 21:31:50 -04:00
|
|
|
/*
|
|
|
|
Py_NotImplemented is a singleton used to signal that an operation is
|
|
|
|
not implemented for a given type combination.
|
|
|
|
*/
|
2002-07-29 10:42:14 -03:00
|
|
|
PyAPI_DATA(PyObject) _Py_NotImplementedStruct; /* Don't use this directly */
|
2024-03-21 13:07:00 -03:00
|
|
|
|
|
|
|
#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030D0000
|
|
|
|
# define Py_NotImplemented Py_GetConstantBorrowed(Py_CONSTANT_NOT_IMPLEMENTED)
|
|
|
|
#else
|
|
|
|
# define Py_NotImplemented (&_Py_NotImplementedStruct)
|
|
|
|
#endif
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2011-08-10 22:05:21 -03:00
|
|
|
/* Macro for returning Py_NotImplemented from a function */
|
2023-04-22 16:39:37 -03:00
|
|
|
#define Py_RETURN_NOTIMPLEMENTED return Py_NotImplemented
|
2011-08-10 22:05:21 -03:00
|
|
|
|
2001-01-17 11:20:39 -04:00
|
|
|
/* Rich comparison opcodes */
|
|
|
|
#define Py_LT 0
|
|
|
|
#define Py_LE 1
|
|
|
|
#define Py_EQ 2
|
|
|
|
#define Py_NE 3
|
|
|
|
#define Py_GT 4
|
|
|
|
#define Py_GE 5
|
|
|
|
|
2020-11-10 16:09:55 -04:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030A0000
|
|
|
|
/* Result of calling PyIter_Send */
|
|
|
|
typedef enum {
|
|
|
|
PYGEN_RETURN = 0,
|
|
|
|
PYGEN_ERROR = -1,
|
|
|
|
PYGEN_NEXT = 1,
|
|
|
|
} PySendResult;
|
|
|
|
#endif
|
|
|
|
|
2017-11-02 07:32:54 -03:00
|
|
|
/*
|
|
|
|
* Macro for implementing rich comparisons
|
|
|
|
*
|
|
|
|
* Needs to be a macro because any C-comparable type can be used.
|
|
|
|
*/
|
|
|
|
#define Py_RETURN_RICHCOMPARE(val1, val2, op) \
|
|
|
|
do { \
|
|
|
|
switch (op) { \
|
|
|
|
case Py_EQ: if ((val1) == (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
|
|
|
case Py_NE: if ((val1) != (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
|
|
|
case Py_LT: if ((val1) < (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
|
|
|
case Py_GT: if ((val1) > (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
|
|
|
case Py_LE: if ((val1) <= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
|
|
|
case Py_GE: if ((val1) >= (val2)) Py_RETURN_TRUE; Py_RETURN_FALSE; \
|
|
|
|
default: \
|
|
|
|
Py_UNREACHABLE(); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
1994-08-01 08:34:53 -03:00
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/*
|
|
|
|
More conventions
|
|
|
|
================
|
|
|
|
|
|
|
|
Argument Checking
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
Functions that take objects as arguments normally don't check for nil
|
|
|
|
arguments, but they do check the type of the argument, and return an
|
|
|
|
error if the function doesn't apply to the type.
|
|
|
|
|
|
|
|
Failure Modes
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Functions may fail for a variety of reasons, including running out of
|
1990-12-20 11:06:42 -04:00
|
|
|
memory. This is communicated to the caller in two ways: an error string
|
|
|
|
is set (see errors.h), and the function result differs: functions that
|
|
|
|
normally return a pointer return NULL for failure, functions returning
|
|
|
|
an integer return -1 (which could be a legal return value too!), and
|
|
|
|
other functions return 0 for success and -1 for failure.
|
2002-07-07 16:59:50 -03:00
|
|
|
Callers should always check for errors before using the result. If
|
|
|
|
an error was set, the caller must either explicitly clear it, or pass
|
|
|
|
the error on to its caller.
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
Reference Counts
|
|
|
|
----------------
|
|
|
|
|
|
|
|
It takes a while to get used to the proper usage of reference counts.
|
|
|
|
|
|
|
|
Functions that create an object set the reference count to 1; such new
|
1995-01-12 07:45:45 -04:00
|
|
|
objects must be stored somewhere or destroyed again with Py_DECREF().
|
2003-11-09 12:38:39 -04:00
|
|
|
Some functions that 'store' objects, such as PyTuple_SetItem() and
|
|
|
|
PyList_SetItem(),
|
1990-10-14 09:07:46 -03:00
|
|
|
don't increment the reference count of the object, since the most
|
|
|
|
frequent use is to store a fresh object. Functions that 'retrieve'
|
2003-11-09 12:38:39 -04:00
|
|
|
objects, such as PyTuple_GetItem() and PyDict_GetItemString(), also
|
1995-01-12 07:45:45 -04:00
|
|
|
don't increment
|
1990-10-14 09:07:46 -03:00
|
|
|
the reference count, since most frequently the object is only looked at
|
|
|
|
quickly. Thus, to retrieve an object and store it again, the caller
|
1995-01-12 07:45:45 -04:00
|
|
|
must call Py_INCREF() explicitly.
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2003-11-09 12:38:39 -04:00
|
|
|
NOTE: functions that 'consume' a reference count, like
|
|
|
|
PyList_SetItem(), consume the reference even if the object wasn't
|
|
|
|
successfully stored, to simplify error handling.
|
1990-10-14 09:07:46 -03:00
|
|
|
|
|
|
|
It seems attractive to make other functions that take an object as
|
2003-11-09 12:38:39 -04:00
|
|
|
argument consume a reference count; however, this may quickly get
|
1990-10-14 09:07:46 -03:00
|
|
|
confusing (even the current practice is already confusing). Consider
|
1995-01-12 07:45:45 -04:00
|
|
|
it carefully, it may save lots of calls to Py_INCREF() and Py_DECREF() at
|
1990-10-14 09:07:46 -03:00
|
|
|
times.
|
|
|
|
*/
|
1993-07-28 06:05:47 -03:00
|
|
|
|
2018-10-25 12:31:10 -03:00
|
|
|
#ifndef Py_LIMITED_API
|
2018-11-26 12:09:16 -04:00
|
|
|
# define Py_CPYTHON_OBJECT_H
|
2021-10-14 20:50:04 -03:00
|
|
|
# include "cpython/object.h"
|
2018-11-26 12:09:16 -04:00
|
|
|
# undef Py_CPYTHON_OBJECT_H
|
2018-10-25 12:31:10 -03:00
|
|
|
#endif
|
|
|
|
|
2020-02-05 09:24:17 -04:00
|
|
|
|
|
|
|
static inline int
|
2020-07-08 06:02:23 -03:00
|
|
|
PyType_HasFeature(PyTypeObject *type, unsigned long feature)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
#ifdef Py_LIMITED_API
|
|
|
|
// PyTypeObject is opaque in the limited C API
|
|
|
|
flags = PyType_GetFlags(type);
|
|
|
|
#else
|
2024-06-15 11:39:22 -03:00
|
|
|
# ifdef Py_GIL_DISABLED
|
|
|
|
flags = _Py_atomic_load_ulong_relaxed(&type->tp_flags);
|
|
|
|
# else
|
|
|
|
flags = type->tp_flags;
|
|
|
|
# endif
|
2020-07-08 06:02:23 -03:00
|
|
|
#endif
|
|
|
|
return ((flags & feature) != 0);
|
2020-02-05 09:24:17 -04:00
|
|
|
}
|
|
|
|
|
2022-06-20 11:04:52 -03:00
|
|
|
#define PyType_FastSubclass(type, flag) PyType_HasFeature((type), (flag))
|
2020-02-05 09:24:17 -04:00
|
|
|
|
2022-02-11 12:01:10 -04:00
|
|
|
static inline int PyType_Check(PyObject *op) {
|
2020-02-05 09:24:17 -04:00
|
|
|
return PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TYPE_SUBCLASS);
|
|
|
|
}
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
|
|
|
|
# define PyType_Check(op) PyType_Check(_PyObject_CAST(op))
|
|
|
|
#endif
|
2020-02-05 09:24:17 -04:00
|
|
|
|
2022-04-27 05:40:57 -03:00
|
|
|
#define _PyType_CAST(op) \
|
2022-05-03 11:37:06 -03:00
|
|
|
(assert(PyType_Check(op)), _Py_CAST(PyTypeObject*, (op)))
|
2022-01-21 16:39:01 -04:00
|
|
|
|
2022-02-11 12:01:10 -04:00
|
|
|
static inline int PyType_CheckExact(PyObject *op) {
|
2020-02-13 13:37:17 -04:00
|
|
|
return Py_IS_TYPE(op, &PyType_Type);
|
2020-02-05 09:24:17 -04:00
|
|
|
}
|
gh-89653: PEP 670: Functions don't cast pointers (#91697)
In the limited C API version 3.11 and newer, the following functions
no longer cast their object pointer argument with _PyObject_CAST() or
_PyObject_CAST_CONST():
* Py_REFCNT(), Py_TYPE(), Py_SIZE()
* Py_SET_REFCNT(), Py_SET_TYPE(), Py_SET_SIZE()
* Py_IS_TYPE()
* Py_INCREF(), Py_DECREF()
* Py_XINCREF(), Py_XDECREF()
* Py_NewRef(), Py_XNewRef()
* PyObject_TypeCheck()
* PyType_Check()
* PyType_CheckExact()
Split Py_DECREF() implementation in 3 versions to make the code more
readable.
Update the xxlimited.c extension, which uses the limited C API
version 3.11, to pass PyObject* to these functions.
2022-04-25 19:11:34 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
|
|
|
|
# define PyType_CheckExact(op) PyType_CheckExact(_PyObject_CAST(op))
|
|
|
|
#endif
|
2020-02-05 09:24:17 -04:00
|
|
|
|
2024-03-25 13:32:20 -03:00
|
|
|
#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000
|
|
|
|
PyAPI_FUNC(PyObject *) PyType_GetModuleByDef(PyTypeObject *, PyModuleDef *);
|
|
|
|
#endif
|
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2022-02-24 12:07:12 -04:00
|
|
|
#endif // !Py_OBJECT_H
|