(path)
| 318 | |
| 319 | @staticmethod |
| 320 | def _split_first_parent(path): |
| 321 | split = split_all(path) |
| 322 | if len(split) == 1: |
| 323 | return split[0], None |
| 324 | |
| 325 | return split[0], os.path.join(*split[1:]) |
| 326 | |
| 327 | @staticmethod |
| 328 | def _matches_recursive_blob(path, pattern): |
no test coverage detected