| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | /*[clinic input]
 | 
					
						
							|  |  |  | preserve | 
					
						
							|  |  |  | [clinic start generated code]*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_getvalue__doc__, | 
					
						
							|  |  |  | "getvalue($self, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Retrieve the entire contents of the object."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_GETVALUE_METHODDEF    \
 | 
					
						
							|  |  |  |     {"getvalue", (PyCFunction)_io_StringIO_getvalue, METH_NOARGS, _io_StringIO_getvalue__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_getvalue_impl(stringio *self); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_getvalue(stringio *self, PyObject *Py_UNUSED(ignored)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _io_StringIO_getvalue_impl(self); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_tell__doc__, | 
					
						
							|  |  |  | "tell($self, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Tell the current file position."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_TELL_METHODDEF    \
 | 
					
						
							|  |  |  |     {"tell", (PyCFunction)_io_StringIO_tell, METH_NOARGS, _io_StringIO_tell__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_tell_impl(stringio *self); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_tell(stringio *self, PyObject *Py_UNUSED(ignored)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _io_StringIO_tell_impl(self); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_read__doc__, | 
					
						
							| 
									
										
										
										
											2017-03-11 00:52:01 +02:00
										 |  |  | "read($self, size=-1, /)\n" | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Read at most size characters, returned as a string.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "If the argument is negative or omitted, read until EOF\n" | 
					
						
							|  |  |  | "is reached. Return an empty string at EOF."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_READ_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:27:36 +02:00
										 |  |  |     {"read", (PyCFunction)(void(*)(void))_io_StringIO_read, METH_FASTCALL, _io_StringIO_read__doc__}, | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-03-11 00:52:01 +02:00
										 |  |  | _io_StringIO_read_impl(stringio *self, Py_ssize_t size); | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-12-15 13:11:11 +02:00
										 |  |  | _io_StringIO_read(stringio *self, PyObject *const *args, Py_ssize_t nargs) | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							| 
									
										
										
										
											2017-03-11 00:52:01 +02:00
										 |  |  |     Py_ssize_t size = -1; | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (!_PyArg_CheckPositional("read", nargs, 0, 1)) { | 
					
						
							| 
									
										
										
										
											2017-01-17 02:21:47 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (nargs < 1) { | 
					
						
							|  |  |  |         goto skip_optional; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!_Py_convert_optional_to_ssize_t(args[0], &size)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | skip_optional: | 
					
						
							| 
									
										
										
										
											2017-03-11 00:52:01 +02:00
										 |  |  |     return_value = _io_StringIO_read_impl(self, size); | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_readline__doc__, | 
					
						
							| 
									
										
										
										
											2017-03-11 00:52:01 +02:00
										 |  |  | "readline($self, size=-1, /)\n" | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Read until newline or EOF.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Returns an empty string if EOF is hit immediately."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_READLINE_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:27:36 +02:00
										 |  |  |     {"readline", (PyCFunction)(void(*)(void))_io_StringIO_readline, METH_FASTCALL, _io_StringIO_readline__doc__}, | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-03-11 00:52:01 +02:00
										 |  |  | _io_StringIO_readline_impl(stringio *self, Py_ssize_t size); | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-12-15 13:11:11 +02:00
										 |  |  | _io_StringIO_readline(stringio *self, PyObject *const *args, Py_ssize_t nargs) | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							| 
									
										
										
										
											2017-03-11 00:52:01 +02:00
										 |  |  |     Py_ssize_t size = -1; | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (!_PyArg_CheckPositional("readline", nargs, 0, 1)) { | 
					
						
							| 
									
										
										
										
											2017-01-17 02:21:47 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (nargs < 1) { | 
					
						
							|  |  |  |         goto skip_optional; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!_Py_convert_optional_to_ssize_t(args[0], &size)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | skip_optional: | 
					
						
							| 
									
										
										
										
											2017-03-11 00:52:01 +02:00
										 |  |  |     return_value = _io_StringIO_readline_impl(self, size); | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_truncate__doc__, | 
					
						
							|  |  |  | "truncate($self, pos=None, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Truncate size to pos.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "The pos argument defaults to the current file position, as\n" | 
					
						
							|  |  |  | "returned by tell().  The current file position is unchanged.\n" | 
					
						
							|  |  |  | "Returns the new absolute position."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_TRUNCATE_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:27:36 +02:00
										 |  |  |     {"truncate", (PyCFunction)(void(*)(void))_io_StringIO_truncate, METH_FASTCALL, _io_StringIO_truncate__doc__}, | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-03-30 09:15:31 +03:00
										 |  |  | _io_StringIO_truncate_impl(stringio *self, Py_ssize_t size); | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-12-15 13:11:11 +02:00
										 |  |  | _io_StringIO_truncate(stringio *self, PyObject *const *args, Py_ssize_t nargs) | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							| 
									
										
										
										
											2017-03-30 09:15:31 +03:00
										 |  |  |     Py_ssize_t size = self->pos; | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (!_PyArg_CheckPositional("truncate", nargs, 0, 1)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (nargs < 1) { | 
					
						
							|  |  |  |         goto skip_optional; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (!_Py_convert_optional_to_ssize_t(args[0], &size)) { | 
					
						
							| 
									
										
										
										
											2017-01-17 02:21:47 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  | skip_optional: | 
					
						
							| 
									
										
										
										
											2017-03-30 09:15:31 +03:00
										 |  |  |     return_value = _io_StringIO_truncate_impl(self, size); | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_seek__doc__, | 
					
						
							|  |  |  | "seek($self, pos, whence=0, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Change stream position.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Seek to character offset pos relative to position indicated by whence:\n" | 
					
						
							|  |  |  | "    0  Start of stream (the default).  pos should be >= 0;\n" | 
					
						
							|  |  |  | "    1  Current position - pos must be 0;\n" | 
					
						
							|  |  |  | "    2  End of stream - pos must be 0.\n" | 
					
						
							|  |  |  | "Returns the new absolute position."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_SEEK_METHODDEF    \
 | 
					
						
							| 
									
										
										
										
											2018-11-27 11:27:36 +02:00
										 |  |  |     {"seek", (PyCFunction)(void(*)(void))_io_StringIO_seek, METH_FASTCALL, _io_StringIO_seek__doc__}, | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_seek_impl(stringio *self, Py_ssize_t pos, int whence); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							| 
									
										
										
										
											2017-12-15 13:11:11 +02:00
										 |  |  | _io_StringIO_seek(stringio *self, PyObject *const *args, Py_ssize_t nargs) | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  | { | 
					
						
							|  |  |  |     PyObject *return_value = NULL; | 
					
						
							|  |  |  |     Py_ssize_t pos; | 
					
						
							|  |  |  |     int whence = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |     if (!_PyArg_CheckPositional("seek", nargs, 1, 2)) { | 
					
						
							|  |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Py_ssize_t ival = -1; | 
					
						
							| 
									
										
										
										
											2020-05-28 10:33:45 +03:00
										 |  |  |         PyObject *iobj = _PyNumber_Index(args[0]); | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  |         if (iobj != NULL) { | 
					
						
							|  |  |  |             ival = PyLong_AsSsize_t(iobj); | 
					
						
							|  |  |  |             Py_DECREF(iobj); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         if (ival == -1 && PyErr_Occurred()) { | 
					
						
							|  |  |  |             goto exit; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         pos = ival; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (nargs < 2) { | 
					
						
							|  |  |  |         goto skip_optional; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     whence = _PyLong_AsInt(args[1]); | 
					
						
							|  |  |  |     if (whence == -1 && PyErr_Occurred()) { | 
					
						
							| 
									
										
										
										
											2017-01-17 01:35:17 +01:00
										 |  |  |         goto exit; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-01-11 16:01:14 +02:00
										 |  |  | skip_optional: | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  |     return_value = _io_StringIO_seek_impl(self, pos, whence); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_write__doc__, | 
					
						
							|  |  |  | "write($self, s, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Write string to file.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Returns the number of characters written, which is always equal to\n" | 
					
						
							|  |  |  | "the length of the string."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_WRITE_METHODDEF    \
 | 
					
						
							|  |  |  |     {"write", (PyCFunction)_io_StringIO_write, METH_O, _io_StringIO_write__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_close__doc__, | 
					
						
							|  |  |  | "close($self, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Close the IO object.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Attempting any further operation after the object is closed\n" | 
					
						
							|  |  |  | "will raise a ValueError.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "This method has no effect if the file is already closed."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_CLOSE_METHODDEF    \
 | 
					
						
							|  |  |  |     {"close", (PyCFunction)_io_StringIO_close, METH_NOARGS, _io_StringIO_close__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_close_impl(stringio *self); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_close(stringio *self, PyObject *Py_UNUSED(ignored)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _io_StringIO_close_impl(self); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO___init____doc__, | 
					
						
							|  |  |  | "StringIO(initial_value=\'\', newline=\'\\n\')\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Text I/O implementation using an in-memory buffer.\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "The initial_value argument sets the value of object.  The newline\n" | 
					
						
							|  |  |  | "argument is like the one of TextIOWrapper\'s constructor."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | _io_StringIO___init___impl(stringio *self, PyObject *value, | 
					
						
							|  |  |  |                            PyObject *newline_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | _io_StringIO___init__(PyObject *self, PyObject *args, PyObject *kwargs) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int return_value = -1; | 
					
						
							| 
									
										
										
										
											2016-08-14 10:52:18 +03:00
										 |  |  |     static const char * const _keywords[] = {"initial_value", "newline", NULL}; | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     static _PyArg_Parser _parser = {NULL, _keywords, "StringIO", 0}; | 
					
						
							|  |  |  |     PyObject *argsbuf[2]; | 
					
						
							|  |  |  |     PyObject * const *fastargs; | 
					
						
							|  |  |  |     Py_ssize_t nargs = PyTuple_GET_SIZE(args); | 
					
						
							|  |  |  |     Py_ssize_t noptargs = nargs + (kwargs ? PyDict_GET_SIZE(kwargs) : 0) - 0; | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  |     PyObject *value = NULL; | 
					
						
							|  |  |  |     PyObject *newline_obj = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 2, 0, argsbuf); | 
					
						
							|  |  |  |     if (!fastargs) { | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  |         goto exit; | 
					
						
							| 
									
										
										
										
											2016-06-09 16:16:06 +03:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-03-14 10:32:22 +02:00
										 |  |  |     if (!noptargs) { | 
					
						
							|  |  |  |         goto skip_optional_pos; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if (fastargs[0]) { | 
					
						
							|  |  |  |         value = fastargs[0]; | 
					
						
							|  |  |  |         if (!--noptargs) { | 
					
						
							|  |  |  |             goto skip_optional_pos; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     newline_obj = fastargs[1]; | 
					
						
							|  |  |  | skip_optional_pos: | 
					
						
							| 
									
										
										
										
											2015-04-16 11:19:43 +03:00
										 |  |  |     return_value = _io_StringIO___init___impl((stringio *)self, value, newline_obj); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | exit: | 
					
						
							|  |  |  |     return return_value; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_readable__doc__, | 
					
						
							|  |  |  | "readable($self, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Returns True if the IO object can be read."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_READABLE_METHODDEF    \
 | 
					
						
							|  |  |  |     {"readable", (PyCFunction)_io_StringIO_readable, METH_NOARGS, _io_StringIO_readable__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_readable_impl(stringio *self); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_readable(stringio *self, PyObject *Py_UNUSED(ignored)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _io_StringIO_readable_impl(self); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_writable__doc__, | 
					
						
							|  |  |  | "writable($self, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Returns True if the IO object can be written."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_WRITABLE_METHODDEF    \
 | 
					
						
							|  |  |  |     {"writable", (PyCFunction)_io_StringIO_writable, METH_NOARGS, _io_StringIO_writable__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_writable_impl(stringio *self); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_writable(stringio *self, PyObject *Py_UNUSED(ignored)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _io_StringIO_writable_impl(self); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PyDoc_STRVAR(_io_StringIO_seekable__doc__, | 
					
						
							|  |  |  | "seekable($self, /)\n" | 
					
						
							|  |  |  | "--\n" | 
					
						
							|  |  |  | "\n" | 
					
						
							|  |  |  | "Returns True if the IO object can be seeked."); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define _IO_STRINGIO_SEEKABLE_METHODDEF    \
 | 
					
						
							|  |  |  |     {"seekable", (PyCFunction)_io_StringIO_seekable, METH_NOARGS, _io_StringIO_seekable__doc__}, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_seekable_impl(stringio *self); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PyObject * | 
					
						
							|  |  |  | _io_StringIO_seekable(stringio *self, PyObject *Py_UNUSED(ignored)) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _io_StringIO_seekable_impl(self); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-05-28 10:33:45 +03:00
										 |  |  | /*[clinic end generated code: output=eea93dcab10d0a97 input=a9049054013a1b77]*/ |