mirror of
https://github.com/python/cpython.git
synced 2025-09-26 10:19:53 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue