diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-10 11:00:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-10 11:00:00 (GMT) |
commit | 7dc9875d558447bb71c0e87ab70399120e4aa700 (patch) | |
tree | 6d595af5b39ed68c399e6a638d76c57de8768182 /Doc/whatsnew | |
parent | 760b3f08dc9932d1595982b527c3bd187681ff49 (diff) | |
download | cpython-7dc9875d558447bb71c0e87ab70399120e4aa700.zip cpython-7dc9875d558447bb71c0e87ab70399120e4aa700.tar.gz cpython-7dc9875d558447bb71c0e87ab70399120e4aa700.tar.bz2 |
gh-118209: Add Windows structured exception handling to mmap module (GH-118213)
(cherry picked from commit e85e8deaf3220c8d12b69294e45645aaf20187b9)
Co-authored-by: Dobatymo <Dobatymo@users.noreply.github.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.13.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst index 30296d7..d281299 100644 --- a/Doc/whatsnew/3.13.rst +++ b/Doc/whatsnew/3.13.rst @@ -796,6 +796,9 @@ mmap * :class:`mmap.mmap` now has a *trackfd* parameter on Unix; if it is ``False``, the file descriptor specified by *fileno* will not be duplicated. (Contributed by Zackery Spytz and Petr Viktorin in :gh:`78502`.) +* :class:`mmap.mmap` is now protected from crashing on Windows when the mapped memory + is inaccessible due to file system errors or access violations. + (Contributed by Jannis Weigend in :gh:`118209`.) opcode ------ |