PySvn icon indicating copy to clipboard operation
PySvn copied to clipboard

Feature Request: RemoteClient.checkout() could be returning a LocalClient

Open nils-ballmann opened this issue 8 years ago • 0 comments

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)

nils-ballmann avatar Jul 18 '17 16:07 nils-ballmann