diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-01-11 18:31:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-11 18:31:24 (GMT) |
commit | 8717f7b495c8c33fd37017f4e7684609c304c556 (patch) | |
tree | 1188c32874806381f24f8df69d72aec3c565e380 /Python | |
parent | 55824d01f866d1fa0f21996d897fba0e07d09ac8 (diff) | |
download | cpython-8717f7b495c8c33fd37017f4e7684609c304c556.zip cpython-8717f7b495c8c33fd37017f4e7684609c304c556.tar.gz cpython-8717f7b495c8c33fd37017f4e7684609c304c556.tar.bz2 |
gh-113845: Fix a compiler warning in Python/suggestions.c (GH-113949)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/suggestions.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/suggestions.c b/Python/suggestions.c index 69c3e4f..a09b3ce 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 |