diff options
author | Benjamin Peterson <benjamin@python.org> | 2018-09-12 10:33:44 -0700 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-09-12 10:40:45 -0700 |
commit | b21f3d99eeee630889b5d235cd3af646d620a6a9 (patch) | |
tree | a44be668e2beaee79da3ece92f1ac05e0ed4a7a6 /Modules/_io/winconsoleio.c | |
parent | f52237400b9960d434c5d0676a3479b8c1e8c869 (diff) | |
download | cpython-git-benjamin-pyapi.tar.gz |
closes bpo-34646: Remove PyAPI_* macros from declarations.benjamin-pyapi
Diffstat (limited to 'Modules/_io/winconsoleio.c')
-rw-r--r-- | Modules/_io/winconsoleio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_io/winconsoleio.c b/Modules/_io/winconsoleio.c index f08406643f..13342ec239 100644 --- a/Modules/_io/winconsoleio.c +++ b/Modules/_io/winconsoleio.c @@ -1170,6 +1170,6 @@ PyTypeObject PyWindowsConsoleIO_Type = { 0, /* tp_finalize */ }; -PyAPI_DATA(PyObject *) _PyWindowsConsoleIO_Type = (PyObject*)&PyWindowsConsoleIO_Type; +PyObject * _PyWindowsConsoleIO_Type = (PyObject*)&PyWindowsConsoleIO_Type; #endif /* MS_WINDOWS */ |