8000 extmod/modselect: Remove undocumented support for flags arg to poll. · micropython/micropython@a6109f3 · GitHub
[go: up one dir, main page]

Skip to content

Commit a6109f3

Browse files
committed
extmod/modselect: Remove undocumented support for flags arg to poll.
The signature of this method was poller.poll(timeout=-1, flags=0, /) but the flags argument was not documented and is not CPython compatible. So it's removed in this commit. (The optional flags remains for the ipoll() method, which is documented.) Signed-off-by: Damien George <damien@micropython.org>
1 parent 7d362a8 commit a6109f3

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

extmod/modselect.c

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858

5959
#endif
6060

61-
// Flags for poll()
61+
// Flags for ipoll()
6262
#define FLAG_ONESHOT (1)
6363

6464
// A single pollable object.
@@ -521,15 +521,11 @@ STATIC mp_obj_t poll_poll(size_t n_args, const mp_obj_t *args) {
521521
if (poll_obj_get_revents(poll_obj) != 0) {
522522
mp_obj_t tuple[2] = {poll_obj->obj, MP_OBJ_NEW_SMALL_INT(poll_obj_get_revents(poll_obj))};
523523
ret_list->items[n_ready++] = mp_obj_new_tuple(2, tuple);
524-
if (self->flags & FLAG_ONESHOT) {
525-
// Don't poll next time, until new event mask will be set explicitly
526-
poll_obj_set_events(poll_obj, 0);
527-
}
528524
}
529525
}
530526
return MP_OBJ_FROM_PTR(ret_list);
531527
}
532-
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(poll_poll_obj, 1, 3, poll_poll);
528+
MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(poll_poll_obj, 1, 2, poll_poll);
533529

534530
STATIC mp_obj_t poll_ipoll(size_t n_args, const mp_obj_t *args) {
535531
mp_obj_poll_t *self = MP_OBJ_TO_PTR(args[0]);

0 commit comments

Comments
 (0)
0