py/objfun.h: Remove obsolete comments about entries in extra_args.

These two entries were removed in 049a7a8153

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2021-11-25 23:23:34 +11:00
parent e99f7b6d25
commit a0890983ea
1 changed files with 0 additions and 2 deletions

View File

@ -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;