Skip to content

Commit

Permalink
gh-101524: Fix the ChannelID tp_name (gh-102655)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsnowcurrently committed Mar 13, 2023
1 parent d97757f commit 74885a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Modules/_xxinterpchannelsmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit 74885a0

Please sign in to comment.