commit | e5024517811ee990b770fca0ba7058742d00e032 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Sep 12 12:06:42 2018 -0700 |
committer | GitHub <noreply@github.com> | Wed Sep 12 12:06:42 2018 -0700 |
tree | 6da191463cc8ff17b6c4ec4e4479015e851d5244 | |
parent | 019f0a0cb85ebc234356415f3638b9bd77528e55 [diff] [blame] |
closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218)
diff --git a/Modules/_io/winconsoleio.c b/Modules/_io/winconsoleio.c index f084066..13342ec 100644 --- a/Modules/_io/winconsoleio.c +++ b/Modules/_io/winconsoleio.c
@@ -1170,6 +1170,6 @@ 0, /* tp_finalize */ }; -PyAPI_DATA(PyObject *) _PyWindowsConsoleIO_Type = (PyObject*)&PyWindowsConsoleIO_Type; +PyObject * _PyWindowsConsoleIO_Type = (PyObject*)&PyWindowsConsoleIO_Type; #endif /* MS_WINDOWS */