Skip to content

bpo-31938: Convert selectmodule.c to Argument Clinic #4265

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
Jun 30, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
391f243
bpo-20182: initial application of issue20182.selectmodule.v2.patch
taleinat Oct 28, 2017
3423836
bpo-20182: AC convert new select.kqueue and fix missing summary lines
taleinat Oct 31, 2017
778d240
bpo-20182: selectmodule.c AC: move type and method defintions to bottom
taleinat Oct 31, 2017
378a27f
bpo-20182: selectmodule.c AC: add file descriptor argument converter
taleinat Nov 1, 2017
fc964f0
bpo-20182: selectmodule.c AC: convert select.devpoll to AC
taleinat Nov 1, 2017
b415d95
bpo-20182: selectmodule.c AC: fix and standardize use of ushort_conve…
taleinat Nov 1, 2017
352004c
bpo-20182: selectmodule.c AC: don't "as"-rename epoll method functions
taleinat Nov 1, 2017
b91b2db
bpo-20182: selectmodule.c AC: fix two compilation errors in epoll
taleinat Nov 3, 2017
7939e70
bpo-20182: selectmodule.c AC: re-run clinic.py after its recent bugfix
taleinat Nov 3, 2017
7de2e5d
bpo-31938: address remaining CR issues
taleinat Jun 22, 2018
15f4b0f
Merge branch 'master' into bpo-31938_AC_selectmodule
taleinat Jun 22, 2018
1173711
bpo-31938: describe return values of devpoll.poll() and epoll.poll()
taleinat Jun 24, 2018
65d2f0d
bpo-31938: re-run clinic.py on Modules/selectmodule.c
taleinat Jun 25, 2018
0b81db5
bpo-31938: fix a bug in select_kqueue_fromfd_impl
taleinat Jun 25, 2018
d5a8516
bpo-31938: minor doc-string formatting fix
taleinat Jun 25, 2018
cff3113
bpo-31938: fix select.devpoll.poll() timeout param to positional only
taleinat Jun 25, 2018
aa421fb
bpo-31938: re-run clinic.py on Modules/selectmodule.c (again)
taleinat Jun 25, 2018
1432332
bpo-31938: fix broken function reference in kqueue_queue_Type
taleinat Jun 25, 2018
1474605
Merge branch 'master' into bpo-31938_AC_selectmodule
taleinat Jun 30, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/library/select.rst
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ Edge and Level Trigger Polling (epoll) Objects
Remove a registered file descriptor from the epoll object.


.. method:: epoll.poll(timeout=-1, maxevents=-1)
.. method:: epoll.poll(timeout=None, maxevents=-1)

Wait for events. timeout in seconds (float)

Expand Down
Loading