summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2023-08-17 18:39:42 (GMT)
committerGitHub <noreply@github.com>2023-08-17 18:39:42 (GMT)
commit75b3db8445188c2ad38cabc0021af694df0829b8 (patch)
tree0787c79b66363158b539a0de86a0b3ef6c37d0eb /Include
parent61c7249759ce88465ea655d5c19d17d03ff3f74b (diff)
downloadcpython-75b3db8445188c2ad38cabc0021af694df0829b8.zip
cpython-75b3db8445188c2ad38cabc0021af694df0829b8.tar.gz
cpython-75b3db8445188c2ad38cabc0021af694df0829b8.tar.bz2
gh-107944: Improve error message for function calls with bad keyword arguments (#107969)
Diffstat (limited to 'Include')
-rw-r--r--Include/internal/pycore_pyerrors.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/internal/pycore_pyerrors.h b/Include/internal/pycore_pyerrors.h
index 45929f4..91fd689 100644
--- a/Include/internal/pycore_pyerrors.h
+++ b/Include/internal/pycore_pyerrors.h
@@ -150,7 +150,7 @@ extern PyObject* _PyExc_PrepReraiseStar(
extern int _PyErr_CheckSignalsTstate(PyThreadState *tstate);
extern void _Py_DumpExtensionModules(int fd, PyInterpreterState *interp);
-
+extern 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,