From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Fri, 3 Oct 2025 11:33:49 +0000 (+0100) Subject: `Python/codecs.c`: Remove unused forward declaration (#139511) X-Git-Tag: v3.15.0a1~147 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=12805ef9dac1d564fef222d632dcb4063117bc32;p=thirdparty%2FPython%2Fcpython.git `Python/codecs.c`: Remove unused forward declaration (#139511) --- 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. */