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...