summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-08-25 12:57:00 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-08-25 12:57:00 (GMT)
commitf1fe15982287c5d026e8033b286533e867b51857 (patch)
treeddbf4e265445d01b9cf3b6a5fa837821c32f61ca /Misc
parent61636e7105bac4753f6796834b899ad30aeee492 (diff)
downloadcpython-f1fe15982287c5d026e8033b286533e867b51857.zip
cpython-f1fe15982287c5d026e8033b286533e867b51857.tar.gz
cpython-f1fe15982287c5d026e8033b286533e867b51857.tar.bz2
Issue #11973: Fix a problem in kevent. The flags and fflags fields are now
properly handled as unsigned.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 62e9078..35cba80 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #11973: Fix a problem in kevent. The flags and fflags fields are now
+ properly handled as unsigned.
+
- Issue #17702: On error, os.environb now removes suppress the except context
when raising a new KeyError with the original key.