Return all docstrings extracted from module_content.
(self, module_content)
| 111 | return data, res.err |
| 112 | |
| 113 | def extract_docstrings_from_str(self, module_content): |
| 114 | """Return all docstrings extracted from module_content.""" |
| 115 | return self.extract_from_str(module_content, args=('--docstrings',), strict=False) |
| 116 | |
| 117 | def get_stderr(self, module_content): |
| 118 | return self.extract_from_str(module_content, strict=False, with_stderr=True)[1] |
no test coverage detected