PySvn icon indicating copy to clipboard operation
PySvn copied to clipboard

Lightweight Subversion library for Python.

Results 82 PySvn issues
Sort by recently updated
recently updated
newest added

code: r = svn.remote.RemoteClient(url) logs = r.log_default(stop_on_copy=True) error: Traceback (most recent call last): File "E:\PycharmProjects\branch\venv\lib\site-packages\svn\common_base.py", line 24, in external_command subprocess.check_output( File "C:\Users\Administrator\AppData\Local\Programs\Python\Python38\lib\subprocess.py", line 415, in check_output return run(*popenargs, stdout=PIPE, timeout=timeout,...

Hello there, I have used r.export( ) to checkout the file from svn to local machine. r = svn.remote.RemoteClient(address) r.export(export_loc, revision=None, force=True) Now, how do you add a new file...

Windows console default encoding is gbk. Function `log_default` can not specific an encoding type. once I call svn_remote.log_default() to get a svn repo's log with encoding utf8, there will be...

use svn.remote.RemoteClient has a error .it is ' AttributeError: 'function' object has no attribute 'RemoteClient'' import svn svnClient = svn.remote.RemoteClient( r'http://xxx' + branch, username='sss', password='ss') svnClient.checkout(path) It works fine on...

lock function have been removed? i need lock function.

- "svn revert" added. Relates to issue #122 - "svn cleanup" can remove unversioned and ignored files and folders since svn version 1.9, such a functionality was added. Removal of...

Hi, after installing the svn via pip install svn on my Windows 10 machine with python 3.9 I run the example: import svn.local r = svn.local.LocalClient(xxx) But I get the...

Idea products often create SVN changelists while performing basic file operations. Your SVN status only parses the files not included in any changelist. This is 'svn status --xml' output for...

NOTE: this improvement is backwards compatible, since the new `ChangelistEntry` `namedtuple` still has `action` and `path` as the first two items in the tuple.

Fix for Issue #90: list_recursive does not support browsing svn with windows client Created a dedicated method for handling path joins. Default behavior is to use `os.path.join` for native OS...