(
module, funs_in_module, file_content_generator, generated_path, references
)
| 226 | |
| 227 | |
| 228 | def write_function_files( |
| 229 | module, funs_in_module, file_content_generator, generated_path, references |
| 230 | ): |
| 231 | for fun in funs_in_module: |
| 232 | full_name = f"{module}.{fun}" |
| 233 | with open(generated_path / (full_name + ".rst"), "w") as function_file: |
| 234 | single_file_str = file_content_generator(full_name, references) |
| 235 | function_file.write(single_file_str) |
| 236 | |
| 237 | |
| 238 | def fn_autodoc(out_filename, generated_path, references): |
no outgoing calls
no test coverage detected