Files
typthon/Include/cpython/tupleobject.h
copilot-swe-agent[bot] b198f511d2 Rename Py_ to Ty_ throughout C API
Massive automated renaming of all Py_/PyObject/etc. prefixes to Ty_/TyObject/etc.
This includes:
- All public API types (TyObject, TyTypeObject, etc.)
- All public API functions (Ty_Initialize, Ty_BuildValue, etc.)
- All internal API (_Ty_ prefixes)
- Reference counting macros (Ty_INCREF, Ty_DECREF, etc.)
- Type flags (Ty_TPFLAGS_*)
- Debug flags (Ty_DEBUG, Ty_TRACE_REFS, etc.)
- All object type APIs (TyList_, TyDict_, TyUnicode_, etc.)

This changes over 60,000 occurrences across 1000+ files.

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
2025-12-29 17:37:49 +00:00

41 lines
1.4 KiB
C

#ifndef Ty_CPYTHON_TUPLEOBJECT_H
# error "this header file must not be included directly"
#endif
typedef struct {
PyObject_VAR_HEAD
/* Cached hash. Initially set to -1. */
Ty_hash_t ob_hash;
/* ob_item contains space for 'ob_size' elements.
Items must normally not be NULL, except during construction when
the tuple is not yet visible outside the function that builds it. */
TyObject *ob_item[1];
} PyTupleObject;
PyAPI_FUNC(int) _TyTuple_Resize(TyObject **, Ty_ssize_t);
/* Cast argument to PyTupleObject* type. */
#define _TyTuple_CAST(op) \
(assert(TyTuple_Check(op)), _Ty_CAST(PyTupleObject*, (op)))
// Macros and static inline functions, trading safety for speed
static inline Ty_ssize_t TyTuple_GET_SIZE(TyObject *op) {
PyTupleObject *tuple = _TyTuple_CAST(op);
return Ty_SIZE(tuple);
}
#define TyTuple_GET_SIZE(op) TyTuple_GET_SIZE(_TyObject_CAST(op))
#define TyTuple_GET_ITEM(op, index) (_TyTuple_CAST(op)->ob_item[(index)])
/* Function *only* to be used to fill in brand new tuples */
static inline void
TyTuple_SET_ITEM(TyObject *op, Ty_ssize_t index, TyObject *value) {
PyTupleObject *tuple = _TyTuple_CAST(op);
assert(0 <= index);
assert(index < Ty_SIZE(tuple));
tuple->ob_item[index] = value;
}
#define TyTuple_SET_ITEM(op, index, value) \
TyTuple_SET_ITEM(_TyObject_CAST(op), (index), _TyObject_CAST(value))