Files
typthon/Modules/_testcapi/code.c
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

118 lines
3.1 KiB
C

#include "parts.h"
#include "util.h"
static Ty_ssize_t
get_code_extra_index(PyInterpreterState* interp) {
Ty_ssize_t result = -1;
static const char *key = "_testcapi.frame_evaluation.code_index";
TyObject *interp_dict = TyInterpreterState_GetDict(interp); // borrowed
assert(interp_dict); // real users would handle missing dict... somehow
TyObject *index_obj;
if (TyDict_GetItemStringRef(interp_dict, key, &index_obj) < 0) {
goto finally;
}
Ty_ssize_t index = 0;
if (!index_obj) {
index = PyUnstable_Eval_RequestCodeExtraIndex(NULL);
if (index < 0 || TyErr_Occurred()) {
goto finally;
}
index_obj = TyLong_FromSsize_t(index); // strong ref
if (!index_obj) {
goto finally;
}
int res = TyDict_SetItemString(interp_dict, key, index_obj);
Ty_DECREF(index_obj);
if (res < 0) {
goto finally;
}
}
else {
index = TyLong_AsSsize_t(index_obj);
Ty_DECREF(index_obj);
if (index == -1 && TyErr_Occurred()) {
goto finally;
}
}
result = index;
finally:
return result;
}
static TyObject *
test_code_extra(TyObject* self, TyObject *Ty_UNUSED(callable))
{
TyObject *result = NULL;
TyObject *test_func = NULL;
// Get or initialize interpreter-specific code object storage index
PyInterpreterState *interp = TyInterpreterState_Get();
if (!interp) {
return NULL;
}
Ty_ssize_t code_extra_index = get_code_extra_index(interp);
if (TyErr_Occurred()) {
goto finally;
}
// Get a function to test with
// This can be any Python function. Use `test.test_misc.testfunction`.
test_func = TyImport_ImportModuleAttrString("test.test_capi.test_misc",
"testfunction");
if (!test_func) {
goto finally;
}
TyObject *test_func_code = TyFunction_GetCode(test_func); // borrowed
if (!test_func_code) {
goto finally;
}
// Check the value is initially NULL
void *extra = UNINITIALIZED_PTR;
int res = PyUnstable_Code_GetExtra(test_func_code, code_extra_index, &extra);
if (res < 0) {
goto finally;
}
assert (extra == NULL);
// Set another code extra value
res = PyUnstable_Code_SetExtra(test_func_code, code_extra_index, (void*)(uintptr_t)77);
if (res < 0) {
goto finally;
}
// Assert it was set correctly
extra = UNINITIALIZED_PTR;
res = PyUnstable_Code_GetExtra(test_func_code, code_extra_index, &extra);
if (res < 0) {
goto finally;
}
assert ((uintptr_t)extra == 77);
// Revert to initial code extra value.
res = PyUnstable_Code_SetExtra(test_func_code, code_extra_index, NULL);
if (res < 0) {
goto finally;
}
result = Ty_NewRef(Ty_None);
finally:
Ty_XDECREF(test_func);
return result;
}
static TyMethodDef TestMethods[] = {
{"test_code_extra", test_code_extra, METH_NOARGS},
{NULL},
};
int
_PyTestCapi_Init_Code(TyObject *m) {
if (TyModule_AddFunctions(m, TestMethods) < 0) {
return -1;
}
return 0;
}