I want to pass a python list of strings to a C funtion expecting const char **. I saw the question and solution here but it does not seem to work for me. The following sample code:
argList = ['abc','def']
options = (ctypes.c_char_p * len(argList))()
options[:] = argList
gives the following error:
Traceback (most recent call last):
File "<interactive input>", line 1, in <module>
TypeError: string or integer address expected instead of str instance
What am I doing wrong?
Many thanks, Arik
Addendum:
There seems to be a consensus, that this code should work. Here is how to reproduce the problem.
The following four lines typed in my Python command-line illustrate my problem.
Python 3.2 (r32:88445, Feb 20 2011, 21:29:02) [MSC v.1500 32 bit (Intel)] on win
32
Type "help", "copyright", "credits" or "license" for more information.
>>> from ctypes import *
>>> argList = ['abc', 'def']
>>> options = (c_char_p * len(argList))()
>>> options[:] = argList
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: string or integer address expected instead of str instance
>>>
argList=[b'abc',b'def']. – Mark Tolonen Feb 26 '11 at 4:17