aboutsummaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na@python.org>2021-02-04 08:32:55 +0900
committerGitHub <noreply@github.com>2021-02-04 08:32:55 +0900
commitf917c243c52d62a787738379fb9b97acbed02c17 (patch)
tree4516bfbadf11f83ce17637aac219fb7fdf1ff8ac /Misc
parentbpo-43121: Fix incorrect SyntaxError message for missing comma (GH-24436) (diff)
downloadcpython-f917c243c52d62a787738379fb9b97acbed02c17.tar.gz
cpython-f917c243c52d62a787738379fb9b97acbed02c17.tar.bz2
cpython-f917c243c52d62a787738379fb9b97acbed02c17.zip
bpo-43106: Add os.O_EVTONLY/O_FSYNC/O_SYMLINK/O_NOFOLLOW_ANY (GH-24428)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2021-02-03-17-06-38.bpo-43106.SwcSuU.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2021-02-03-17-06-38.bpo-43106.SwcSuU.rst b/Misc/NEWS.d/next/Library/2021-02-03-17-06-38.bpo-43106.SwcSuU.rst
new file mode 100644
index 00000000000..a85d49437c4
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-02-03-17-06-38.bpo-43106.SwcSuU.rst
@@ -0,0 +1,2 @@
+Added :data:`~os.O_EVTONLY`, :data:`~os.O_FSYNC`, :data:`~os.O_SYMLINK`
+and :data:`~os.O_NOFOLLOW_ANY` for macOS. Patch by Dong-hee Na.