@@ -136,15 +136,15 @@ _io__BufferedIOBase_detach_impl(PyObject *self, PyTypeObject *cls)
136
136
_io._BufferedIOBase.read
137
137
138
138
cls: defining_class
139
+ size: int(unused=True) = -1
139
140
/
140
- *args: object
141
141
142
142
Read and return up to n bytes.
143
143
144
- If the argument is omitted, None, or negative, read and
144
+ If the size argument is omitted, None, or negative, read and
145
145
return all data until EOF.
146
146
147
- If the argument is positive, and the underlying raw stream is
147
+ If the size argument is positive, and the underlying raw stream is
148
148
not 'interactive', multiple raw reads may be issued to satisfy
149
149
the byte count (unless EOF is reached first).
150
150
However, for interactive raw streams (as well as sockets and pipes),
@@ -159,8 +159,8 @@ mode and no data is available at the moment.
159
159
160
160
static PyObject *
161
161
_io__BufferedIOBase_read_impl (PyObject * self , PyTypeObject * cls ,
162
- PyObject * args )
163
- /*[clinic end generated code: output=4521b30940fd7b67 input=390205758adc8510 ]*/
162
+ int Py_UNUSED ( size ) )
163
+ /*[clinic end generated code: output=aceb2765587b0a29 input=824f6f910465e61a ]*/
164
164
{
165
165
_PyIO_State * state = IO_STATE ();
166
166
return bufferediobase_unsupported (state , "read" );
@@ -170,19 +170,19 @@ _io__BufferedIOBase_read_impl(PyObject *self, PyTypeObject *cls,
170
170
_io._BufferedIOBase.read1
171
171
172
172
cls: defining_class
173
+ size: int(unused=True) = -1
173
174
/
174
- *args: object
175
175
176
- Read and return up to n bytes, with at most one read() call to the underlying raw stream.
176
+ Read and return up to size bytes, with at most one read() call to the underlying raw stream.
177
177
178
178
Return an empty bytes object on EOF.
179
179
A short result does not imply that EOF is imminent.
180
180
[clinic start generated code]*/
181
181
182
182
static PyObject *
183
183
_io__BufferedIOBase_read1_impl (PyObject * self , PyTypeObject * cls ,
184
- PyObject * args )
185
- /*[clinic end generated code: output=636fd241c21e050a input=ef546a1238c5b41c ]*/
184
+ int Py_UNUSED ( size ) )
185
+ /*[clinic end generated code: output=2e7fc62972487eaa input=af76380e020fd9e6 ]*/
186
186
{
187
187
_PyIO_State * state = IO_STATE ();
188
188
return bufferediobase_unsupported (state , "read1" );
@@ -192,10 +192,10 @@ _io__BufferedIOBase_read1_impl(PyObject *self, PyTypeObject *cls,
192
192
_io._BufferedIOBase.write
193
193
194
194
cls: defining_class
195
+ b: object(unused=True)
195
196
/
196
- *args: object
197
197
198
- Write the given buffer to the IO stream.
198
+ Write buffer b to the IO stream.
199
199
200
200
Return the number of bytes written, which is always
201
201
the length of b in bytes.
@@ -206,8 +206,8 @@ underlying raw stream cannot accept more data at the moment.
206
206
207
207
static PyObject *
208
208
_io__BufferedIOBase_write_impl (PyObject * self , PyTypeObject * cls ,
209
- PyObject * args )
210
- /*[clinic end generated code: output=d51feea4bcac9892 input=f79b72c4dccb3dc2 ]*/
209
+ PyObject * Py_UNUSED ( b ) )
210
+ /*[clinic end generated code: output=712c635246bf2306 input=9793f5c8f71029ad ]*/
211
211
{
212
212
_PyIO_State * state = IO_STATE ();
213
213
return bufferediobase_unsupported (state , "write" );
0 commit comments