From: Eric Snow Date: Mon, 13 Mar 2023 21:50:16 +0000 (-0600) Subject: gh-101524: Fix the ChannelID tp_name (gh-102655) X-Git-Tag: v3.12.0a7~189 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=74885a08dbc7cc768d15711752957096d6a5a350;p=thirdparty%2FPython%2Fcpython.git gh-101524: Fix the ChannelID tp_name (gh-102655) https://github.com/python/cpython/issues/101524 --- diff --git a/Modules/_xxinterpchannelsmodule.c b/Modules/_xxinterpchannelsmodule.c index a0cd4a2363fb..fead12c963da 100644 --- a/Modules/_xxinterpchannelsmodule.c +++ b/Modules/_xxinterpchannelsmodule.c @@ -1806,7 +1806,7 @@ static PyType_Slot ChannelIDType_slots[] = { }; static PyType_Spec ChannelIDType_spec = { - .name = "_xxsubinterpreters.ChannelID", + .name = MODULE_NAME ".ChannelID", .basicsize = sizeof(channelid), .flags = (Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE | Py_TPFLAGS_DISALLOW_INSTANTIATION | Py_TPFLAGS_IMMUTABLETYPE),