Skip to content

Commit e77e377

Browse files
ericsnowcurrentlywarsaw
authored andcommitted
pythongh-101524: Fix the ChannelID tp_name (pythongh-102655)
python#101524
1 parent 29f35a9 commit e77e377

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_xxinterpchannelsmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1806,7 +1806,7 @@ static PyType_Slot ChannelIDType_slots[] = {
18061806
};
18071807

18081808
static PyType_Spec ChannelIDType_spec = {
1809-
.name = "_xxsubinterpreters.ChannelID",
1809+
.name = MODULE_NAME ".ChannelID",
18101810
.basicsize = sizeof(channelid),
18111811
.flags = (Py_TPFLAGS_DEFAULT | Py_TPFLAGS_BASETYPE |
18121812
Py_TPFLAGS_DISALLOW_INSTANTIATION | Py_TPFLAGS_IMMUTABLETYPE),

0 commit comments

Comments
 (0)