We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcc7c5b commit 7f4658aCopy full SHA for 7f4658a
1 file changed
py/modthread.c
@@ -96,6 +96,7 @@ STATIC mp_obj_t thread_lock_locked(mp_obj_t self_in) {
96
STATIC MP_DEFINE_CONST_FUN_OBJ_1(thread_lock_locked_obj, thread_lock_locked);
97
98
STATIC mp_obj_t thread_lock___exit__(size_t n_args, const mp_obj_t *args) {
99
+ (void)n_args; // unused
100
return thread_lock_release(args[0]);
101
}
102
STATIC MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(thread_lock___exit___obj, 4, 4, thread_lock___exit__);
0 commit comments