ctypes-python-bindings - list files in working copy issue
From: Martin Zibricky <mzibr.public_at_gmail.com>
 
Date: Fri, 09 Mar 2012 15:33:05 +0100 
Hi all,
 I'm trying to use csvn (ctypes based python bindings).
 I have a simple code example.
 But when trying to run this code I get the following error.
 Could anyone please confirm this issue?
 
---
$ python list_working_copy.py
AAAAAAAAAA
Traceback (most recent call last):
  File "_ctypes/callbacks.c", line 295, in 'calling callback function'
TypeError: _list_wrapper() takes exactly 6 arguments (7 given)
Segmentation fault
---
# file: list_working_copy.py
import csvn.core
from csvn.wc import WC
csvn.core.svn_cmdline_init("", csvn.core.stderr)
working_copy = WC('path_to_wc')
print 'A' * 10
working_copy.list()
print 'B' * 10
working_copy.close()
---
Received on 2012-03-09 15:33:44 CET
 | 
This is an archived mail posted to the Subversion Dev mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.