diff -r cc9bf81382f5 -r 9c4e04fe267e mercurial/localrepo.py --- 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]