(self, client_name)
| 2785 | """ |
| 2786 | |
| 2787 | def __init__(self, client_name): |
| 2788 | self.mappings = [] |
| 2789 | self.client_prefix = "//%s/" % client_name |
| 2790 | # cache results of "p4 where" to lookup client file locations |
| 2791 | self.client_spec_path_cache = {} |
| 2792 | |
| 2793 | def append(self, view_line): |
| 2794 | """Parse a view line, splitting it into depot and client sides. Append |