From d2becdb9f5267811f80beb715289a7caa667cf50 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Fri, 19 Jan 2024 20:04:03 +0800 Subject: [PATCH] ... --- include/pocketpy/config.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/include/pocketpy/config.h b/include/pocketpy/config.h index 97835a98..9dc16339 100644 --- a/include/pocketpy/config.h +++ b/include/pocketpy/config.h @@ -57,10 +57,9 @@ // The actual size in bytes equals `sizeof(void*) * PK_VM_STACK_SIZE` #define PK_VM_STACK_SIZE 32768 -// This is the maximum number of arguments in a function declaration -// including positional arguments, keyword-only arguments, and varargs +// This is the maximum number of local variables in a function // (not recommended to change this / it should be less than 200) -#define PK_MAX_CO_VARNAMES 32 +#define PK_MAX_CO_VARNAMES 64 // Hash table load factor (smaller ones mean less collision but more memory) // For class instance