From 12805ef9dac1d564fef222d632dcb4063117bc32 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Fri, 3 Oct 2025 12:33:49 +0100 Subject: [PATCH] `Python/codecs.c`: Remove unused forward declaration (#139511) --- Python/codecs.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/Python/codecs.c b/Python/codecs.c index 364e07990ba4..0bde56c0ac66 100644 --- a/Python/codecs.c +++ b/Python/codecs.c @@ -83,8 +83,6 @@ PyCodec_Unregister(PyObject *search_function) return 0; } -extern int _Py_normalize_encoding(const char *, char *, size_t); - /* Convert a string to a normalized Python string: all ASCII letters are converted to lower case, spaces are replaced with hyphens. */ -- 2.47.3