diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-05-27 16:48:17 (GMT) |
---|---|---|
committer | Antoine Pitrou <antoine@python.org> | 2019-05-27 16:48:16 (GMT) |
commit | 02db696732c031d9a0265dc9bbf4f5b1fad042b3 (patch) | |
tree | e98de473936501302c683c984a9f8b4fdccf6dd2 /Misc | |
parent | 331a6a56e9a9c72f3e4605987fabdaec72677702 (diff) | |
download | cpython-02db696732c031d9a0265dc9bbf4f5b1fad042b3.zip cpython-02db696732c031d9a0265dc9bbf4f5b1fad042b3.tar.gz cpython-02db696732c031d9a0265dc9bbf4f5b1fad042b3.tar.bz2 |
bpo-32941: Add madvise() for mmap objects (GH-6172)
Allow mmap objects to access the madvise() system call.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2018-03-20-20-57-00.bpo-32941.9FU0gL.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-03-20-20-57-00.bpo-32941.9FU0gL.rst b/Misc/NEWS.d/next/Library/2018-03-20-20-57-00.bpo-32941.9FU0gL.rst new file mode 100644 index 0000000..f7668ae --- /dev/null +++ b/Misc/NEWS.d/next/Library/2018-03-20-20-57-00.bpo-32941.9FU0gL.rst @@ -0,0 +1,2 @@ +Allow :class:`mmap.mmap` objects to access the madvise() system call +(through :meth:`mmap.mmap.madvise`). |