Skip to content

Commit 74885a0

Browse files
gh-101524: Fix the ChannelID tp_name (gh-102655)
#101524
1 parent d97757f commit 74885a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: Modules/_xxinterpchannelsmodule.c

+1-1
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)