Lines Matching defs:buffer
41 "subclasses, BufferedWriter, BufferedReader, and BufferedRWPair buffer\n"
58 " An int containing the default buffer size used by the module's buffered\n"
128 the size of a fixed-size chunk buffer. When no buffering argument is
131 * Binary files are buffered in fixed-size chunks; the size of the buffer
134 On many systems, the buffer will typically be 4096 or 8192 bytes long.
211 PyObject *raw, *modeobj = NULL, *buffer, *wrapper, *result = NULL, *path_or_fd = NULL;
313 "binary mode, the default buffer size will be used",
408 buffer = PyObject_CallFunction(Buffered_class, "Oi", raw, buffering);
410 if (buffer == NULL)
412 result = buffer;
425 buffer,
431 Py_DECREF(buffer);