diff --git a/it/src/load_module.py b/it/src/load_module.py new file mode 100644 index 0000000..df02050 --- /dev/null +++ b/it/src/load_module.py @@ -0,0 +1,8 @@ +def main(buffer, command): + if len(command) == 1: + print("?") + else: + for module in command[1:]: + if buffer.import_module_(module): + print("Loaded %s" % module) + return buffer