mercurial/localrepo.py
changeset 13720 9c4e04fe267e
parent 13716 6d7338f5320a
child 13723 e615765fdcc7
--- a/mercurial/localrepo.py	Tue Mar 22 07:37:56 2011 +0100
+++ b/mercurial/localrepo.py	Tue Mar 22 07:38:32 2011 +0100
@@ -1905,6 +1905,10 @@
     def listkeys(self, namespace):
         return pushkey.list(self, namespace)
 
+    def debugwireargs(self, one, two, three=None, four=None):
+        '''used to test argument passing over the wire'''
+        return "%s %s %s %s" % (one, two, three, four)
+
 # used to avoid circular references so destructors work
 def aftertrans(files):
     renamefiles = [tuple(t) for t in files]