Create the automodule directive and add the options.
(module, package=None)
| 65 | |
| 66 | |
| 67 | def format_directive(module, package=None): |
| 68 | """Create the automodule directive and add the options.""" |
| 69 | directive = '.. automodule:: %s\n' % makename(package, module) |
| 70 | for option in OPTIONS: |
| 71 | directive += ' :%s:\n' % option |
| 72 | return directive |
| 73 | |
| 74 | |
| 75 | def create_module_file(package, module, opts): |
no test coverage detected