diff options
author | Georg Brandl <georg@python.org> | 2009-12-29 21:09:17 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-12-29 21:09:17 (GMT) |
commit | fa1ffb69c48edd7c24918407d8b6b80186463602 (patch) | |
tree | d4ffe1660ecdc731d10bf3c98e2bd56f974a3978 /Modules/selectmodule.c | |
parent | 8e3e1d601612783434d61cf8927c55bf866b2f1b (diff) | |
download | cpython-fa1ffb69c48edd7c24918407d8b6b80186463602.zip cpython-fa1ffb69c48edd7c24918407d8b6b80186463602.tar.gz cpython-fa1ffb69c48edd7c24918407d8b6b80186463602.tar.bz2 |
#7595: fix typo in argument default constant.
Diffstat (limited to 'Modules/selectmodule.c')
-rw-r--r-- | Modules/selectmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/selectmodule.c b/Modules/selectmodule.c index acbea7a..f243a1d 100644 --- a/Modules/selectmodule.c +++ b/Modules/selectmodule.c @@ -1161,7 +1161,7 @@ static PyTypeObject pyEpoll_Type = { #endif PyDoc_STRVAR(kqueue_event_doc, -"kevent(ident, filter=KQ_FILTER_READ, flags=KQ_ADD, fflags=0, data=0, udata=0)\n\ +"kevent(ident, filter=KQ_FILTER_READ, flags=KQ_EV_ADD, fflags=0, data=0, udata=0)\n\ \n\ This object is the equivalent of the struct kevent for the C API.\n\ \n\ |