diff options
Diffstat (limited to 'Modules/_io')
-rw-r--r-- | Modules/_io/clinic/_iomodule.c.h | 4 | ||||
-rw-r--r-- | Modules/_io/clinic/bufferedio.c.h | 38 | ||||
-rw-r--r-- | Modules/_io/clinic/bytesio.c.h | 38 | ||||
-rw-r--r-- | Modules/_io/clinic/fileio.c.h | 20 | ||||
-rw-r--r-- | Modules/_io/clinic/iobase.c.h | 20 | ||||
-rw-r--r-- | Modules/_io/clinic/stringio.c.h | 26 | ||||
-rw-r--r-- | Modules/_io/clinic/textio.c.h | 30 | ||||
-rw-r--r-- | Modules/_io/clinic/winconsoleio.c.h | 8 |
8 files changed, 38 insertions, 146 deletions
diff --git a/Modules/_io/clinic/_iomodule.c.h b/Modules/_io/clinic/_iomodule.c.h index 245df25..3d6d5c7 100644 --- a/Modules/_io/clinic/_iomodule.c.h +++ b/Modules/_io/clinic/_iomodule.c.h @@ -127,7 +127,7 @@ PyDoc_STRVAR(_io_open__doc__, "opened in a binary mode."); #define _IO_OPEN_METHODDEF \ - {"open", (PyCFunction)_io_open, METH_FASTCALL, _io_open__doc__}, + {"open", (PyCFunction)_io_open, METH_FASTCALL|METH_KEYWORDS, _io_open__doc__}, static PyObject * _io_open_impl(PyObject *module, PyObject *file, const char *mode, @@ -158,4 +158,4 @@ _io_open(PyObject *module, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) exit: return return_value; } -/*[clinic end generated code: output=e6011c784fe6589b input=a9049054013a1b77]*/ +/*[clinic end generated code: output=7e0ab289d8465580 input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/bufferedio.c.h b/Modules/_io/clinic/bufferedio.c.h index ae3d484..fafcc12 100644 --- a/Modules/_io/clinic/bufferedio.c.h +++ b/Modules/_io/clinic/bufferedio.c.h @@ -97,15 +97,11 @@ static PyObject * _io__Buffered_peek_impl(buffered *self, Py_ssize_t size); static PyObject * -_io__Buffered_peek(buffered *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__Buffered_peek(buffered *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = 0; - if (!_PyArg_NoStackKeywords("peek", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|n:peek", &size)) { goto exit; @@ -128,15 +124,11 @@ static PyObject * _io__Buffered_read_impl(buffered *self, Py_ssize_t n); static PyObject * -_io__Buffered_read(buffered *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__Buffered_read(buffered *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t n = -1; - if (!_PyArg_NoStackKeywords("read", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:read", _Py_convert_optional_to_ssize_t, &n)) { goto exit; @@ -159,15 +151,11 @@ static PyObject * _io__Buffered_read1_impl(buffered *self, Py_ssize_t n); static PyObject * -_io__Buffered_read1(buffered *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__Buffered_read1(buffered *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t n = -1; - if (!_PyArg_NoStackKeywords("read1", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|n:read1", &n)) { goto exit; @@ -252,15 +240,11 @@ static PyObject * _io__Buffered_readline_impl(buffered *self, Py_ssize_t size); static PyObject * -_io__Buffered_readline(buffered *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__Buffered_readline(buffered *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!_PyArg_NoStackKeywords("readline", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:readline", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -283,16 +267,12 @@ static PyObject * _io__Buffered_seek_impl(buffered *self, PyObject *targetobj, int whence); static PyObject * -_io__Buffered_seek(buffered *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__Buffered_seek(buffered *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; PyObject *targetobj; int whence = 0; - if (!_PyArg_NoStackKeywords("seek", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "O|i:seek", &targetobj, &whence)) { goto exit; @@ -315,15 +295,11 @@ static PyObject * _io__Buffered_truncate_impl(buffered *self, PyObject *pos); static PyObject * -_io__Buffered_truncate(buffered *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__Buffered_truncate(buffered *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; PyObject *pos = Py_None; - if (!_PyArg_NoStackKeywords("truncate", kwnames)) { - goto exit; - } - if (!_PyArg_UnpackStack(args, nargs, "truncate", 0, 1, &pos)) { @@ -500,4 +476,4 @@ _io_BufferedRandom___init__(PyObject *self, PyObject *args, PyObject *kwargs) exit: return return_value; } -/*[clinic end generated code: output=4f7490f82427c63b input=a9049054013a1b77]*/ +/*[clinic end generated code: output=2b817df0bf814ddc input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/bytesio.c.h b/Modules/_io/clinic/bytesio.c.h index 4addaa8..c920332 100644 --- a/Modules/_io/clinic/bytesio.c.h +++ b/Modules/_io/clinic/bytesio.c.h @@ -164,15 +164,11 @@ static PyObject * _io_BytesIO_read_impl(bytesio *self, Py_ssize_t size); static PyObject * -_io_BytesIO_read(bytesio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_BytesIO_read(bytesio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!_PyArg_NoStackKeywords("read", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:read", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -199,15 +195,11 @@ static PyObject * _io_BytesIO_read1_impl(bytesio *self, Py_ssize_t size); static PyObject * -_io_BytesIO_read1(bytesio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_BytesIO_read1(bytesio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!_PyArg_NoStackKeywords("read1", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:read1", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -235,15 +227,11 @@ static PyObject * _io_BytesIO_readline_impl(bytesio *self, Py_ssize_t size); static PyObject * -_io_BytesIO_readline(bytesio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_BytesIO_readline(bytesio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!_PyArg_NoStackKeywords("readline", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:readline", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -271,15 +259,11 @@ static PyObject * _io_BytesIO_readlines_impl(bytesio *self, PyObject *arg); static PyObject * -_io_BytesIO_readlines(bytesio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_BytesIO_readlines(bytesio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; PyObject *arg = Py_None; - if (!_PyArg_NoStackKeywords("readlines", kwnames)) { - goto exit; - } - if (!_PyArg_UnpackStack(args, nargs, "readlines", 0, 1, &arg)) { @@ -342,15 +326,11 @@ static PyObject * _io_BytesIO_truncate_impl(bytesio *self, Py_ssize_t size); static PyObject * -_io_BytesIO_truncate(bytesio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_BytesIO_truncate(bytesio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = self->pos; - if (!_PyArg_NoStackKeywords("truncate", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:truncate", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -380,16 +360,12 @@ static PyObject * _io_BytesIO_seek_impl(bytesio *self, Py_ssize_t pos, int whence); static PyObject * -_io_BytesIO_seek(bytesio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_BytesIO_seek(bytesio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t pos; int whence = 0; - if (!_PyArg_NoStackKeywords("seek", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "n|i:seek", &pos, &whence)) { goto exit; @@ -468,4 +444,4 @@ _io_BytesIO___init__(PyObject *self, PyObject *args, PyObject *kwargs) exit: return return_value; } -/*[clinic end generated code: output=9e63715414bffb2a input=a9049054013a1b77]*/ +/*[clinic end generated code: output=20946f5a2ed4492b input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/fileio.c.h b/Modules/_io/clinic/fileio.c.h index 0d9ac61..720e722 100644 --- a/Modules/_io/clinic/fileio.c.h +++ b/Modules/_io/clinic/fileio.c.h @@ -208,15 +208,11 @@ static PyObject * _io_FileIO_read_impl(fileio *self, Py_ssize_t size); static PyObject * -_io_FileIO_read(fileio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_FileIO_read(fileio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!_PyArg_NoStackKeywords("read", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:read", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -284,16 +280,12 @@ static PyObject * _io_FileIO_seek_impl(fileio *self, PyObject *pos, int whence); static PyObject * -_io_FileIO_seek(fileio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_FileIO_seek(fileio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; PyObject *pos; int whence = 0; - if (!_PyArg_NoStackKeywords("seek", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "O|i:seek", &pos, &whence)) { goto exit; @@ -342,15 +334,11 @@ static PyObject * _io_FileIO_truncate_impl(fileio *self, PyObject *posobj); static PyObject * -_io_FileIO_truncate(fileio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_FileIO_truncate(fileio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; PyObject *posobj = NULL; - if (!_PyArg_NoStackKeywords("truncate", kwnames)) { - goto exit; - } - if (!_PyArg_UnpackStack(args, nargs, "truncate", 0, 1, &posobj)) { @@ -385,4 +373,4 @@ _io_FileIO_isatty(fileio *self, PyObject *Py_UNUSED(ignored)) #ifndef _IO_FILEIO_TRUNCATE_METHODDEF #define _IO_FILEIO_TRUNCATE_METHODDEF #endif /* !defined(_IO_FILEIO_TRUNCATE_METHODDEF) */ -/*[clinic end generated code: output=2c6a5470100a8f10 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=1af8b4031633b763 input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/iobase.c.h b/Modules/_io/clinic/iobase.c.h index e869d0d..2ab61a8 100644 --- a/Modules/_io/clinic/iobase.c.h +++ b/Modules/_io/clinic/iobase.c.h @@ -180,15 +180,11 @@ static PyObject * _io__IOBase_readline_impl(PyObject *self, Py_ssize_t limit); static PyObject * -_io__IOBase_readline(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__IOBase_readline(PyObject *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t limit = -1; - if (!_PyArg_NoStackKeywords("readline", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:readline", _Py_convert_optional_to_ssize_t, &limit)) { goto exit; @@ -216,15 +212,11 @@ static PyObject * _io__IOBase_readlines_impl(PyObject *self, Py_ssize_t hint); static PyObject * -_io__IOBase_readlines(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__IOBase_readlines(PyObject *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t hint = -1; - if (!_PyArg_NoStackKeywords("readlines", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:readlines", _Py_convert_optional_to_ssize_t, &hint)) { goto exit; @@ -255,15 +247,11 @@ static PyObject * _io__RawIOBase_read_impl(PyObject *self, Py_ssize_t n); static PyObject * -_io__RawIOBase_read(PyObject *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__RawIOBase_read(PyObject *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t n = -1; - if (!_PyArg_NoStackKeywords("read", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|n:read", &n)) { goto exit; @@ -291,4 +279,4 @@ _io__RawIOBase_readall(PyObject *self, PyObject *Py_UNUSED(ignored)) { return _io__RawIOBase_readall_impl(self); } -/*[clinic end generated code: output=8361ae8d81d072bf input=a9049054013a1b77]*/ +/*[clinic end generated code: output=1dc5cc1a9977d73f input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/stringio.c.h b/Modules/_io/clinic/stringio.c.h index 6dd4c5e..d0d4296 100644 --- a/Modules/_io/clinic/stringio.c.h +++ b/Modules/_io/clinic/stringio.c.h @@ -54,15 +54,11 @@ static PyObject * _io_StringIO_read_impl(stringio *self, Py_ssize_t size); static PyObject * -_io_StringIO_read(stringio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_StringIO_read(stringio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!_PyArg_NoStackKeywords("read", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:read", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -88,15 +84,11 @@ static PyObject * _io_StringIO_readline_impl(stringio *self, Py_ssize_t size); static PyObject * -_io_StringIO_readline(stringio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_StringIO_readline(stringio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!_PyArg_NoStackKeywords("readline", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:readline", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -124,15 +116,11 @@ static PyObject * _io_StringIO_truncate_impl(stringio *self, Py_ssize_t size); static PyObject * -_io_StringIO_truncate(stringio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_StringIO_truncate(stringio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = self->pos; - if (!_PyArg_NoStackKeywords("truncate", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:truncate", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -162,16 +150,12 @@ static PyObject * _io_StringIO_seek_impl(stringio *self, Py_ssize_t pos, int whence); static PyObject * -_io_StringIO_seek(stringio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_StringIO_seek(stringio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t pos; int whence = 0; - if (!_PyArg_NoStackKeywords("seek", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "n|i:seek", &pos, &whence)) { goto exit; @@ -302,4 +286,4 @@ _io_StringIO_seekable(stringio *self, PyObject *Py_UNUSED(ignored)) { return _io_StringIO_seekable_impl(self); } -/*[clinic end generated code: output=443f5dd99bbbd053 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=a5e963d90b4eedc0 input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/textio.c.h b/Modules/_io/clinic/textio.c.h index e609eaa..a428005 100644 --- a/Modules/_io/clinic/textio.c.h +++ b/Modules/_io/clinic/textio.c.h @@ -46,7 +46,7 @@ PyDoc_STRVAR(_io_IncrementalNewlineDecoder_decode__doc__, "\n"); #define _IO_INCREMENTALNEWLINEDECODER_DECODE_METHODDEF \ - {"decode", (PyCFunction)_io_IncrementalNewlineDecoder_decode, METH_FASTCALL, _io_IncrementalNewlineDecoder_decode__doc__}, + {"decode", (PyCFunction)_io_IncrementalNewlineDecoder_decode, METH_FASTCALL|METH_KEYWORDS, _io_IncrementalNewlineDecoder_decode__doc__}, static PyObject * _io_IncrementalNewlineDecoder_decode_impl(nldecoder_object *self, @@ -185,7 +185,7 @@ PyDoc_STRVAR(_io_TextIOWrapper_reconfigure__doc__, "This also does an implicit stream flush."); #define _IO_TEXTIOWRAPPER_RECONFIGURE_METHODDEF \ - {"reconfigure", (PyCFunction)_io_TextIOWrapper_reconfigure, METH_FASTCALL, _io_TextIOWrapper_reconfigure__doc__}, + {"reconfigure", (PyCFunction)_io_TextIOWrapper_reconfigure, METH_FASTCALL|METH_KEYWORDS, _io_TextIOWrapper_reconfigure__doc__}, static PyObject * _io_TextIOWrapper_reconfigure_impl(textio *self, @@ -266,15 +266,11 @@ static PyObject * _io_TextIOWrapper_read_impl(textio *self, Py_ssize_t n); static PyObject * -_io_TextIOWrapper_read(textio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_TextIOWrapper_read(textio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t n = -1; - if (!_PyArg_NoStackKeywords("read", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:read", _Py_convert_optional_to_ssize_t, &n)) { goto exit; @@ -297,15 +293,11 @@ static PyObject * _io_TextIOWrapper_readline_impl(textio *self, Py_ssize_t size); static PyObject * -_io_TextIOWrapper_readline(textio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_TextIOWrapper_readline(textio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!_PyArg_NoStackKeywords("readline", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|n:readline", &size)) { goto exit; @@ -328,16 +320,12 @@ static PyObject * _io_TextIOWrapper_seek_impl(textio *self, PyObject *cookieObj, int whence); static PyObject * -_io_TextIOWrapper_seek(textio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_TextIOWrapper_seek(textio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; PyObject *cookieObj; int whence = 0; - if (!_PyArg_NoStackKeywords("seek", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "O|i:seek", &cookieObj, &whence)) { goto exit; @@ -377,15 +365,11 @@ static PyObject * _io_TextIOWrapper_truncate_impl(textio *self, PyObject *pos); static PyObject * -_io_TextIOWrapper_truncate(textio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io_TextIOWrapper_truncate(textio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; PyObject *pos = Py_None; - if (!_PyArg_NoStackKeywords("truncate", kwnames)) { - goto exit; - } - if (!_PyArg_UnpackStack(args, nargs, "truncate", 0, 1, &pos)) { @@ -515,4 +499,4 @@ _io_TextIOWrapper_close(textio *self, PyObject *Py_UNUSED(ignored)) { return _io_TextIOWrapper_close_impl(self); } -/*[clinic end generated code: output=8ffc6d2557c9c620 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=937989df0a8abfc3 input=a9049054013a1b77]*/ diff --git a/Modules/_io/clinic/winconsoleio.c.h b/Modules/_io/clinic/winconsoleio.c.h index 03ddae3..9415345 100644 --- a/Modules/_io/clinic/winconsoleio.c.h +++ b/Modules/_io/clinic/winconsoleio.c.h @@ -215,15 +215,11 @@ static PyObject * _io__WindowsConsoleIO_read_impl(winconsoleio *self, Py_ssize_t size); static PyObject * -_io__WindowsConsoleIO_read(winconsoleio *self, PyObject **args, Py_ssize_t nargs, PyObject *kwnames) +_io__WindowsConsoleIO_read(winconsoleio *self, PyObject **args, Py_ssize_t nargs) { PyObject *return_value = NULL; Py_ssize_t size = -1; - if (!_PyArg_NoStackKeywords("read", kwnames)) { - goto exit; - } - if (!_PyArg_ParseStack(args, nargs, "|O&:read", _Py_convert_optional_to_ssize_t, &size)) { goto exit; @@ -332,4 +328,4 @@ _io__WindowsConsoleIO_isatty(winconsoleio *self, PyObject *Py_UNUSED(ignored)) #ifndef _IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF #define _IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF #endif /* !defined(_IO__WINDOWSCONSOLEIO_ISATTY_METHODDEF) */ -/*[clinic end generated code: output=3bbf6f893a58f476 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=7f74992fcd5bd89d input=a9049054013a1b77]*/ |