mercurial/localrepo.py
changeset 14048 58e58406ed19
parent 14036 90d997a812dc
child 14056 bcfe78c3d15c
equal deleted inserted replaced
14047:30ccb7d03864 14048:58e58406ed19
  1919         return pushkey.push(self, namespace, key, old, new)
  1919         return pushkey.push(self, namespace, key, old, new)
  1920 
  1920 
  1921     def listkeys(self, namespace):
  1921     def listkeys(self, namespace):
  1922         return pushkey.list(self, namespace)
  1922         return pushkey.list(self, namespace)
  1923 
  1923 
  1924     def debugwireargs(self, one, two, three=None, four=None):
  1924     def debugwireargs(self, one, two, three=None, four=None, five=None):
  1925         '''used to test argument passing over the wire'''
  1925         '''used to test argument passing over the wire'''
  1926         return "%s %s %s %s" % (one, two, three, four)
  1926         return "%s %s %s %s %s" % (one, two, three, four, five)
  1927 
  1927 
  1928 # used to avoid circular references so destructors work
  1928 # used to avoid circular references so destructors work
  1929 def aftertrans(files):
  1929 def aftertrans(files):
  1930     renamefiles = [tuple(t) for t in files]
  1930     renamefiles = [tuple(t) for t in files]
  1931     def a():
  1931     def a():