https://github.com/python/cpython/commit/8717f7b495c8c33fd37017f4e7684609c304c556 commit: 8717f7b495c8c33fd37017f4e7684609c304c556 branch: main author: Serhiy Storchaka <[email protected]> committer: serhiy-storchaka <[email protected]> date: 2024-01-11T20:31:24+02:00 summary:
gh-113845: Fix a compiler warning in Python/suggestions.c (GH-113949) files: M Python/suggestions.c diff --git a/Python/suggestions.c b/Python/suggestions.c index 69c3e4fe4d2146..a09b3ce6d9dab2 100644 --- a/Python/suggestions.c +++ b/Python/suggestions.c @@ -4,8 +4,6 @@ #include "pycore_pyerrors.h" // export _Py_UTF8_Edit_Cost() #include "pycore_runtime.h" // _Py_ID() -#include "stdlib_module_names.h" // _Py_stdlib_module_names - #define MAX_CANDIDATE_ITEMS 750 #define MAX_STRING_SIZE 40 _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
