Skip to content

Commit 338593c

Browse files
Update Modules/_threadmodule.c
1 parent 9690eee commit 338593c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_threadmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2524,7 +2524,7 @@ _thread__get_name_impl(PyObject *module)
25242524

25252525
#ifdef __sun
25262526
// gh-138004: Decode Solaris/Illumos (e.g. OpenIndiana) thread names
2527-
// from ASCII, since OpenIndiana only supports ASCII names.
2527+
// from ASCII, since OpenIndiana only supports ASCII names.
25282528
return PyUnicode_DecodeASCII(name, strlen(name), "surrogateescape");
25292529
#else
25302530
return PyUnicode_DecodeFSDefault(name);

0 commit comments

Comments
 (0)