From 3a3db4dcf0400cffef860f61a84979cb1f7a7541 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 22 Oct 2015 23:45:37 +0100 Subject: py: Put all bytecode state (arg count, etc) in bytecode. --- py/runtime0.h | 1 + 1 file changed, 1 insertion(+) (limited to 'py/runtime0.h') diff --git a/py/runtime0.h b/py/runtime0.h index 1d7d64bea6..d00949f929 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -30,6 +30,7 @@ #define MP_SCOPE_FLAG_VARARGS (0x01) #define MP_SCOPE_FLAG_VARKEYWORDS (0x02) #define MP_SCOPE_FLAG_GENERATOR (0x04) +#define MP_SCOPE_FLAG_DEFKWARGS (0x08) // types for native (viper) function signature #define MP_NATIVE_TYPE_OBJ (0x00) -- cgit v1.2.3