diff options
| author | Pablo Galindo <Pablogsal@gmail.com> | 2020-11-17 00:00:38 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-17 00:00:38 +0000 |
| commit | a57b3d30f66c90f42da751bf82256b9b22961ed0 (patch) | |
| tree | 04ec1f393ebfe891fda48a164829bdee76911c0b /Doc/whatsnew | |
| parent | cce3f0b0c88eba98bc11abe703a444bee7880ff8 (diff) | |
| download | cpython-git-a57b3d30f66c90f42da751bf82256b9b22961ed0.tar.gz | |
bpo-41625: Expose the splice() system call in the os module (GH-21947)
Diffstat (limited to 'Doc/whatsnew')
| -rw-r--r-- | Doc/whatsnew/3.10.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index 87ba2e8af7..25b736ec32 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -233,6 +233,11 @@ Added a new function :func:`os.eventfd` and related helpers to wrap the ``eventfd2`` syscall on Linux. (Contributed by Christian Heimes in :issue:`41001`.) +Added :func:`os.splice()` that allows to move data between two file +descriptors without copying between kernel address space and user +address space, where one of the file descriptors must refer to a +pipe. (Contributed by Pablo Galindo in :issue:`41625`.) + py_compile ---------- |
