From b88aedb70b566b57bdc0c4e507b98af53d7471f5 Mon Sep 17 00:00:00 2001 From: morotti Date: Mon, 17 Jun 2024 11:01:56 +0100 Subject: [PATCH] Update Misc/NEWS.d/next/Core and Builtins/2024-04-30-14-03-09.gh-issue-117151.yt2H8c.rst Co-authored-by: Pieter Eendebak --- .../2024-04-30-14-03-09.gh-issue-117151.yt2H8c.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-04-30-14-03-09.gh-issue-117151.yt2H8c.rst b/Misc/NEWS.d/next/Core and Builtins/2024-04-30-14-03-09.gh-issue-117151.yt2H8c.rst index 559fbcd887f6336..b14c0176f8aaa80 100644 --- a/Misc/NEWS.d/next/Core and Builtins/2024-04-30-14-03-09.gh-issue-117151.yt2H8c.rst +++ b/Misc/NEWS.d/next/Core and Builtins/2024-04-30-14-03-09.gh-issue-117151.yt2H8c.rst @@ -1,3 +1,3 @@ -increase io.DEFAULT_BUFFER_SIZE from 4k/8k to 128k. fix open on Linux to use +Increase ``io.DEFAULT_BUFFER_SIZE`` from 4k/8k to 128k. Adapt :func:`open` on Linux to use ``max(io.DEFAULT_BUFFER_SIZE, device block size)`` rather than the device block size. Improve I/O performance upto 3 to 5 times. Patch by Romain Morotti.