PySvn
PySvn copied to clipboard
Feature Request: RemoteClient.checkout() could be returning a LocalClient
It would be convenient if the checkout-method from the RemoteClient would be returning a LocalClient ready for use.
This would change code like:
remote_client = svn.remote.RemoteClient(url)
remote_client.checkout(local_path)
local_client = svn.local.LocalClient(local_path)
into
remote_client = svn.remote.RemoteClient(url)
local_client = remote_client.checkout(local_path)