From a0890983ea25c343c510d5dad509b48bc7a96cc9 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 25 Nov 2021 23:23:34 +1100 Subject: [PATCH] py/objfun.h: Remove obsolete comments about entries in extra_args. These two entries were removed in 049a7a81531a67e068d926ad50260578fb79f94c Signed-off-by: Damien George --- py/objfun.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/py/objfun.h b/py/objfun.h index 905b5dbca..771bf31a9 100644 --- a/py/objfun.h +++ b/py/objfun.h @@ -39,8 +39,6 @@ typedef struct _mp_obj_fun_bc_t { // the following extra_args array is allocated space to take (in order): // - values of positional default args (if any) // - a single slot for default kw args dict (if it has them) - // - a single slot for var args tuple (if it takes them) - // - a single slot for kw args dict (if it takes them) mp_obj_t extra_args[]; } mp_obj_fun_bc_t;