This commit is contained in:
blueloveTH 2023-10-07 20:24:17 +08:00
parent af4f5ac10f
commit 40399c089d
2 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,7 @@ pipeline = [
["config.h", "export.h", "common.h", "memory.h", "vector.h", "str.h", "tuplelist.h", "namedict.h", "error.h", "lexer.h"],
["obj.h", "dict.h", "codeobject.h", "frame.h"],
["gc.h", "vm.h", "ceval.h", "expr.h", "compiler.h", "repl.h"],
["_generated.h", "cffi.h", "bindings.h", "iter.h", "base64.h", "random.h", "re.h", "linalg.h", "easing.h", "io.h"],
["_generated.h", "cffi.h", "bindings.h", "iter.h", "base64.h", "collections.h", "random.h", "re.h", "linalg.h", "easing.h", "io.h"],
["pocketpy.h", "pocketpy_c.h"]
]

View File

@ -18,6 +18,8 @@ namespace pkpy
PyDeque() = default;
void printHelloWorld();
static void _register(VM *vm, PyObject *mod, PyObject *type);
void _gc_mark() const; // needed for container types
};
void add_module_mycollections(VM *vm);