From 39710ed2a6c0e81d643e49cd21575ec29e014a5f Mon Sep 17 00:00:00 2001 From: rmorotti Date: Mon, 22 Apr 2024 14:15:46 +0100 Subject: [PATCH] set DEFAULT_BUFFER_SIZE in the other place --- Modules/_io/_iomodule.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_io/_iomodule.h b/Modules/_io/_iomodule.h index afd638a120ba085..18cf20edf26f7d9 100644 --- a/Modules/_io/_iomodule.h +++ b/Modules/_io/_iomodule.h @@ -78,7 +78,7 @@ extern Py_ssize_t _PyIO_find_line_ending( */ extern int _PyIO_trap_eintr(void); -#define DEFAULT_BUFFER_SIZE (8 * 1024) /* bytes */ +#define DEFAULT_BUFFER_SIZE (128 * 1024) /* bytes */ /* * Offset type for positioning.