| 35 | } |
| 36 | |
| 37 | void get_python_module_info(JsonParam &node_param, std::string &module_name, |
| 38 | std::string &option) { |
| 39 | // dump_node_json(node_param); |
| 40 | node_param.get_string("module", module_name); |
| 41 | JsonParam node_option_json; |
| 42 | node_param.get_object("option", node_option_json); |
| 43 | option = node_option_json.dump(); |
| 44 | } |
| 45 | |
| 46 | void create_python_module_from_string( |
| 47 | std::string module_name, std::string option, |
no test coverage detected