##// END OF EJS Templates
pathutil: document that dirs map type implies manifest/dirstate processing
Josef 'Jeff' Sipek -
r45116:11f284c8 default
parent child Browse files
Show More
@@ -286,6 +286,9 b' class dirs(object):'
286 '''a multiset of directory names from a set of file paths'''
286 '''a multiset of directory names from a set of file paths'''
287
287
288 def __init__(self, map, skip=None):
288 def __init__(self, map, skip=None):
289 '''
290 a dict map indicates a dirstate while a list indicates a manifest
291 '''
289 self._dirs = {}
292 self._dirs = {}
290 addpath = self.addpath
293 addpath = self.addpath
291 if isinstance(map, dict) and skip is not None:
294 if isinstance(map, dict) and skip is not None:
General Comments 0
You need to be logged in to leave comments. Login now