diff options
author | Pablo Galindo Salgado <Pablogsal@gmail.com> | 2023-08-17 18:39:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-17 18:39:42 (GMT) |
commit | 75b3db8445188c2ad38cabc0021af694df0829b8 (patch) | |
tree | 0787c79b66363158b539a0de86a0b3ef6c37d0eb /Include | |
parent | 61c7249759ce88465ea655d5c19d17d03ff3f74b (diff) | |
download | cpython-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.h | 2 |
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, |