cpython: d5334d8907dc (original) (raw)
Mercurial > cpython
changeset 85382:d5334d8907dc 3.3
Issue #11973: Fix a problem in kevent. The flags and fflags fields are now properly handled as unsigned. [#11973]
Christian Heimes christian@cheimes.de | |
---|---|
date | Sun, 25 Aug 2013 14:57:00 +0200 |
parents | 8b962e831ff0 |
children | 8345fb616cbd 0dbe45697efc |
files | Misc/NEWS Modules/selectmodule.c |
diffstat | 2 files changed, 4 insertions(+), 1 deletions(-)[+] [-] Misc/NEWS 3 Modules/selectmodule.c 2 |
line wrap: on
line diff
--- 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
- Issue #17702: On error, os.environb now removes suppress the except context when raising a new KeyError with the original key.
--- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -1638,7 +1638,7 @@ kqueue_event_init(kqueue_event_Object *s PyObject *pfd; static char *kwlist[] = {"ident", "filter", "flags", "fflags", "data", "udata", NULL};
EV_SET(&(self->e), 0, EVFILT_READ, EV_ADD, 0, 0, 0); /* defaults */