python-svn-swig-api

How can I call the svn.client.svn_client_list2 with python SVN API SWIG bindings?

The question How do I call svn_client_list2 C API function from python via SVN API SWIG bindings? Problem description I can find that function from the svn.client module, but calling it is the problem, because the callback function it uses is a typedef svn_client_list_func_t and I don't know how to use that typedef in python. Althou...

How do I get a list of versioned files from a working copy path via python SVN SWIG API?

The need I want a list of versioned files from a path which is a working copy of SVN repository using the python SVN SWIG API. Below is the approach I've taken, but if it's wrong just point me in the right direction. An approach It seems that you'd do this via C API with svn_client_list2 function. So calling that via python SVN API S...