mirror of
https://github.com/python/cpython.git
synced 2025-08-01 15:43:13 +00:00
Issue #3945: Fixed compile error on cygwin. (initializer element is not constant)
Reviewed by Amaury Forgeot d'Arc.
This commit is contained in:
parent
fe7c26d942
commit
09979a137a
1 changed files with 1 additions and 1 deletions
|
@ -831,7 +831,7 @@ static PyGetSetDef fileio_getsetlist[] = {
|
|||
};
|
||||
|
||||
PyTypeObject PyFileIO_Type = {
|
||||
PyVarObject_HEAD_INIT(&PyType_Type, 0)
|
||||
PyVarObject_HEAD_INIT(NULL, 0)
|
||||
"_FileIO",
|
||||
sizeof(PyFileIOObject),
|
||||
0,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue