mercurial/wireprotov2server.py
changeset 40649 f83cea7f54d7
parent 40391 abbd077965c0
child 40923 3ed77780f4a6
equal deleted inserted replaced
40648:85372dc0cca3 40649:f83cea7f54d7
  1043     else:
  1043     else:
  1044         matcher = matchmod.match(repo.root, b'')
  1044         matcher = matchmod.match(repo.root, b'')
  1045 
  1045 
  1046     # Requested patterns could include files not in the local store. So
  1046     # Requested patterns could include files not in the local store. So
  1047     # filter those out.
  1047     # filter those out.
  1048     return matchmod.intersectmatchers(repo.narrowmatch(), matcher)
  1048     return repo.narrowmatch(matcher)
  1049 
  1049 
  1050 @wireprotocommand(
  1050 @wireprotocommand(
  1051     'filedata',
  1051     'filedata',
  1052     args={
  1052     args={
  1053         'haveparents': {
  1053         'haveparents': {