mirror of
https://github.com/python/cpython.git
synced 2025-11-25 21:11:09 +00:00
fix _abc.c compile error on Cygwin (GH-8445)
This commit is contained in:
parent
11c7953165
commit
abe5922743
1 changed files with 1 additions and 1 deletions
|
|
@ -66,7 +66,7 @@ PyDoc_STRVAR(abc_data_doc,
|
|||
"Internal state held by ABC machinery.");
|
||||
|
||||
static PyTypeObject _abc_data_type = {
|
||||
PyVarObject_HEAD_INIT(&PyType_Type, 0)
|
||||
PyVarObject_HEAD_INIT(NULL, 0)
|
||||
"_abc_data", /*tp_name*/
|
||||
sizeof(_abc_data), /*tp_basicsize*/
|
||||
.tp_dealloc = (destructor)abc_data_dealloc,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue