diff options
author | Dong-hee Na <donghee.na92@gmail.com> | 2017-06-21 16:52:32 (GMT) |
---|---|---|
committer | ethanfurman <ethan@stoneleaf.us> | 2017-06-21 16:52:32 (GMT) |
commit | dcc8ce44c74492670e6bfbde588a2acbf8f365e0 (patch) | |
tree | 911ffe701c25f1be9beeeeae22f924516a95e025 /Misc/NEWS | |
parent | 5ff7132313eb651107b179d20218dfe5d4e47f13 (diff) | |
download | cpython-dcc8ce44c74492670e6bfbde588a2acbf8f365e0.zip cpython-dcc8ce44c74492670e6bfbde588a2acbf8f365e0.tar.gz cpython-dcc8ce44c74492670e6bfbde588a2acbf8f365e0.tar.bz2 |
bpo-30616: Functional API of enum allows to create empty enums. (#2304)
* bpo-30616: Functional API of enum allows to create empty enums.
* Update NEWS
move addition to avoid conflict
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -385,6 +385,9 @@ Library correctly returns the ``127.0.0.1`` host, instead of treating ``@evil.com`` as the host in an authentification (``login@host``). +- bpo-30616: Functional API of enum allows to create empty enums. + Patched by Dong-hee Na + - bpo-30038: Fix race condition between signal delivery and wakeup file descriptor. Patch by Nathaniel Smith. |