|
@@ -9,7 +9,7 @@ pipeline = [
|
|
|
["config.h", "export.h", "common.h", "memory.h", "vector.h", "str.h", "tuplelist.h", "namedict.h", "error.h"],
|
|
["config.h", "export.h", "common.h", "memory.h", "vector.h", "str.h", "tuplelist.h", "namedict.h", "error.h"],
|
|
|
["obj.h", "dict.h", "codeobject.h", "frame.h"],
|
|
["obj.h", "dict.h", "codeobject.h", "frame.h"],
|
|
|
["gc.h", "vm.h", "ceval.h", "lexer.h", "expr.h", "compiler.h", "repl.h"],
|
|
["gc.h", "vm.h", "ceval.h", "lexer.h", "expr.h", "compiler.h", "repl.h"],
|
|
|
- ["_generated.h", "cffi.h", "bindings.h", "iter.h", "base64.h", "csv.h", "collections.h", "random.h", "re.h", "linalg.h", "easing.h", "io.h", "modules.h"],
|
|
|
|
|
|
|
+ ["_generated.h", "cffi.h", "bindings.h", "iter.h", "base64.h", "csv.h", "collections.h", "random.h", "linalg.h", "easing.h", "io.h", "modules.h"],
|
|
|
["pocketpy.h", "pocketpy_c.h"]
|
|
["pocketpy.h", "pocketpy_c.h"]
|
|
|
]
|
|
]
|
|
|
|
|
|
|
@@ -34,7 +34,7 @@ def remove_copied_include(text):
|
|
|
key = m.group(1)
|
|
key = m.group(1)
|
|
|
if key.startswith("pocketpy/"):
|
|
if key.startswith("pocketpy/"):
|
|
|
key = key[9:]
|
|
key = key[9:]
|
|
|
- if key in ["user_config.h", "box2dw.hpp", "cJSONw.hpp"]:
|
|
|
|
|
|
|
+ if key in ["user_config.h", "cJSONw.hpp"]:
|
|
|
return m.group(0)
|
|
return m.group(0)
|
|
|
if key == "opcodes.h":
|
|
if key == "opcodes.h":
|
|
|
return OPCODES_TEXT
|
|
return OPCODES_TEXT
|