(path)
| 274 | return description, brief |
| 275 | |
| 276 | def _parse_path(path): |
| 277 | file = "" |
| 278 | if path: |
| 279 | index = path.find('dmsdk') |
| 280 | if index != -1: |
| 281 | file = path[index:] |
| 282 | return path, file |
| 283 | |
| 284 | def _create_doc_info(tags): |
| 285 | info = script_doc_ddf_pb2.Info() |
no test coverage detected