From 28b651c5a8f01317d8181f6173692549a57aa136 Mon Sep 17 00:00:00 2001 From: Ivy Xu Date: Tue, 21 Jul 2026 16:21:37 +0800 Subject: [PATCH] Remove undefined `_Py_Offer_Suggestions` --- Include/internal/pycore_pyerrors.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Include/internal/pycore_pyerrors.h b/Include/internal/pycore_pyerrors.h index c1f9d71e40077c1..8f772a045e27a5d 100644 --- a/Include/internal/pycore_pyerrors.h +++ b/Include/internal/pycore_pyerrors.h @@ -186,7 +186,6 @@ extern int _PyErr_CheckSignalsTstate(PyThreadState *tstate); extern void _Py_DumpExtensionModules(int fd, PyInterpreterState *interp); // Exported for external JIT support PyAPI_FUNC(PyObject *) _Py_CalculateSuggestions(PyObject *dir, PyObject *name); -extern PyObject* _Py_Offer_Suggestions(PyObject* exception); // Export for '_testinternalcapi' shared extension PyAPI_FUNC(Py_ssize_t) _Py_UTF8_Edit_Cost(PyObject *str_a, PyObject *str_b,