Fix config and status function patterns

- Fixed PyConfig → TyConfig globally
- Fixed _Py_HandleSystemExitAndKeyboardInterrupt → _Ty_*
- Fixed _Py_GetEnv, _Py_ClearArgcArgv → _Ty_*
- Fixed _Py_CRITICAL_SECTION_ASSERT_OBJECT_LOCKED → _Ty_*
- Fixed TyStatus_Ok, TyStatus_Error, TyStatus_NoMemory, TyStatus_Exit function definitions and calls

Resolved linker errors. Build is much closer to completion.

Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-29 19:15:43 +00:00
parent a4901966cb
commit 9ab881d228
38 changed files with 297 additions and 297 deletions

View File

@@ -74,7 +74,7 @@ _TyPathConfig_ClearGlobal(void)
}
TyStatus
_TyPathConfig_ReadGlobal(PyConfig *config)
_TyPathConfig_ReadGlobal(TyConfig *config)
{
TyStatus status = _TyStatus_OK();
@@ -119,7 +119,7 @@ done:
}
TyStatus
_TyPathConfig_UpdateGlobal(const PyConfig *config)
_TyPathConfig_UpdateGlobal(const TyConfig *config)
{
#define COPY(ATTR) \
do { \