summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDong-hee Na <donghee.na92@gmail.com>2019-10-28 07:31:15 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2019-10-28 07:31:15 (GMT)
commit3bfc8e0fcc707d200c267ff05b052fd6a63c985a (patch)
treeadc7e753effdeba3575aab6ffad8adc43e5dcde0 /Misc
parent85c6f8c65cd4f7219522c1f304bdfff19f785e7a (diff)
downloadcpython-3bfc8e0fcc707d200c267ff05b052fd6a63c985a.zip
cpython-3bfc8e0fcc707d200c267ff05b052fd6a63c985a.tar.gz
cpython-3bfc8e0fcc707d200c267ff05b052fd6a63c985a.tar.bz2
bpo-38602: Add fcntl.F_OFD_XXXX for fcntlmodule (GH-16956)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-10-27-22-29-45.bpo-38602.7jvYFA.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-10-27-22-29-45.bpo-38602.7jvYFA.rst b/Misc/NEWS.d/next/Library/2019-10-27-22-29-45.bpo-38602.7jvYFA.rst
new file mode 100644
index 0000000..9b8229b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-10-27-22-29-45.bpo-38602.7jvYFA.rst
@@ -0,0 +1,3 @@
+Added constants :data:`~fcntl.F_OFD_GETLK`, :data:`~fcntl.F_OFD_SETLK`
+and :data:`~fcntl.F_OFD_SETLKW` to the :mod:`fcntl` module.
+Patch by Dong-hee Na.