Rev 599: make all args explicit. in file:///data/jelmer/bzr-svn/revprops/

Jelmer Vernooij jelmer at samba.org
Sun Dec 9 21:12:52 GMT 2007


At file:///data/jelmer/bzr-svn/revprops/

------------------------------------------------------------
revno: 599
revision-id:jelmer at samba.org-20071209211252-dnb5a91r7v52gebs
parent: jelmer at samba.org-20071206205301-wwv6y7t0ksunz34w
committer: Jelmer Vernooij <jelmer at samba.org>
branch nick: revprops
timestamp: Sun 2007-12-09 22:12:52 +0100
message:
  make all args explicit.
modified:
  transport.py                   transport.py-20060406231150-b3472d06b3a0818d
=== modified file 'transport.py'
--- a/transport.py	2007-12-06 20:53:01 +0000
+++ b/transport.py	2007-12-09 21:12:52 +0000
@@ -325,10 +325,12 @@
 
     @convert_svn_error
     @needs_busy
-    def get_log(self, path, from_revnum, to_revnum, *args, **kwargs):
+    def get_log(self, path, from_revnum, to_revnum, limit, discover_changed_paths, 
+                strict_node_history, recvr, pool=None):
         self.mutter('svn log %r:%r %r' % (from_revnum, to_revnum, path))
         return svn.ra.get_log(self._ra, [self._request_path(path)], 
-                              from_revnum, to_revnum, *args, **kwargs)
+                              from_revnum, to_revnum, limit, discover_changed_paths, 
+                              strict_node_history, recvr, pool)
 
     def _open_real_transport(self):
         if self._backing_url != self.svn_url:




More information about the bazaar-commits mailing list