mirror of https://github.com/python/cpython
gh-101524: Fix the ChannelID tp_name (gh-102655)
https://github.com/python/cpython/issues/101524
This commit is contained in:
parent
d97757f793
commit
74885a08db
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue