From 994290f1ea08fc4ec8b3915d24f399f5a5f489b5 Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sat, 20 May 2023 18:56:57 +0800 Subject: [PATCH] ... --- amalgamate.py | 2 +- src/pocketpy.h | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/amalgamate.py b/amalgamate.py index bba5c1a9..a60cebbb 100644 --- a/amalgamate.py +++ b/amalgamate.py @@ -7,7 +7,7 @@ with open("src/opcodes.h", "rt", encoding='utf-8') as f: pipeline = [ ["common.h", "memory.h", "vector.h", "str.h", "tuplelist.h", "namedict.h", "error.h", "lexer.h"], - ["obj.h", "codeobject.h", "frame.h"], + ["obj.h", "dict.h", "codeobject.h", "frame.h"], ["gc.h", "vm.h", "ceval.h", "expr.h", "compiler.h", "repl.h"], ["_generated.h", "iter.h", "base64.h", "cffi.h", "linalg.h", "easing.h", "requests.h", "io.h", "pocketpy.h"] ] diff --git a/src/pocketpy.h b/src/pocketpy.h index ed958a60..8ef0de4a 100644 --- a/src/pocketpy.h +++ b/src/pocketpy.h @@ -2,7 +2,6 @@ #include "ceval.h" #include "compiler.h" -#include "dict.h" #include "obj.h" #include "repl.h" #include "iter.h"