From f8156582a626fbd4540b3e82e678907ddc14e90b Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Thu, 13 Feb 2025 16:59:21 +0800 Subject: [PATCH] ... --- src/public/modules.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/public/modules.c b/src/public/modules.c index 03aae49b..c9412da7 100644 --- a/src/public/modules.c +++ b/src/public/modules.c @@ -331,7 +331,6 @@ static bool builtins_print(int argc, py_Ref argv) { // print(*args, sep=' ', end='\n') py_TValue* args = py_tuple_data(argv); int length = py_tuple_len(argv); - assert(length != -1); c11_sv sep = py_tosv(py_arg(1)); c11_sv end = py_tosv(py_arg(2)); c11_sbuf buf;