aboutsummaryrefslogtreecommitdiff
path: root/py/objfun.h
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2021-11-25 23:23:34 +1100
committerDamien George <damien@micropython.org>2021-11-25 23:24:40 +1100
commita0890983ea25c343c510d5dad509b48bc7a96cc9 (patch)
tree8e3d32a9d1a9f4af876246f038247e61134d8f4a /py/objfun.h
parente99f7b6d25464f36accc2f04899edfa9e982bee2 (diff)
py/objfun.h: Remove obsolete comments about entries in extra_args.
These two entries were removed in 049a7a81531a67e068d926ad50260578fb79f94c Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'py/objfun.h')
-rw-r--r--py/objfun.h2
1 files changed, 0 insertions, 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;