diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2019-10-28 07:31:15 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2019-10-28 07:31:15 (GMT) |
commit | 3bfc8e0fcc707d200c267ff05b052fd6a63c985a (patch) | |
tree | adc7e753effdeba3575aab6ffad8adc43e5dcde0 /Doc/whatsnew | |
parent | 85c6f8c65cd4f7219522c1f304bdfff19f785e7a (diff) | |
download | cpython-3bfc8e0fcc707d200c267ff05b052fd6a63c985a.zip cpython-3bfc8e0fcc707d200c267ff05b052fd6a63c985a.tar.gz cpython-3bfc8e0fcc707d200c267ff05b052fd6a63c985a.tar.bz2 |
bpo-38602: Add fcntl.F_OFD_XXXX for fcntlmodule (GH-16956)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.9.rst | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index b95b099..886c555 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -125,8 +125,15 @@ that schedules a shutdown for the default executor that waits on the :func:`asyncio.run` has been updated to use the new :term:`coroutine`. (Contributed by Kyle Stanley in :issue:`34037`.) +fcntl +----- + +Added constants :data:`~fcntl.F_OFD_GETLK`, :data:`~fcntl.F_OFD_SETLK` +and :data:`~fcntl.F_OFD_SETLKW`. +(Contributed by Dong-hee Na in :issue:`38602`.) + os -__ +-- Added :data:`~os.CLD_KILLED` and :data:`~os.CLD_STOPPED` for :attr:`si_code`. (Contributed by Dong-hee Na in :issue:`38493`.) |