mercurial/pathutil.py
changeset 50928 d718eddf01d9
parent 49912 bc83ebe07bf0
child 51285 9d3721552b6c
equal deleted inserted replaced
50927:7a8ea1397816 50928:d718eddf01d9
   375     def __contains__(self, d):
   375     def __contains__(self, d):
   376         # type: (bytes) -> bool
   376         # type: (bytes) -> bool
   377         return d in self._dirs
   377         return d in self._dirs
   378 
   378 
   379 
   379 
   380 if util.safehasattr(parsers, 'dirs'):
   380 if hasattr(parsers, 'dirs'):
   381     dirs = parsers.dirs
   381     dirs = parsers.dirs
   382 
   382 
   383 if rustdirs is not None:
   383 if rustdirs is not None:
   384     dirs = rustdirs
   384     dirs = rustdirs
   385 
   385