(pattern, working_dir)
| 304 | |
| 305 | @staticmethod |
| 306 | def _normalize_pattern(pattern, working_dir): |
| 307 | if not os.path.isabs(pattern): |
| 308 | return normalize_path(pattern, working_dir) |
| 309 | return pattern |
| 310 | |
| 311 | @staticmethod |
| 312 | def _contains_child(parent_str, child_path): |
no test coverage detected