Skip to content

Commit 4546171

Browse files
Update Python/codecs.c
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 9c0f595 commit 4546171

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python/codecs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,8 @@ extern int _Py_normalize_encoding(const char *, char *, size_t);
9595
/* Convert a string to a normalized Python string: all ASCII letters are
9696
converted to lower case, spaces are replaced with hyphens. */
9797

98-
static
99-
PyObject *normalizestring(const char *string)
98+
static PyObject*
99+
normalizestring(const char *string)
100100
{
101101
size_t i;
102102
size_t len = strlen(string);

0 commit comments

Comments
 (0)