Swig无法将python3的字节对象转换为std :: string

时间:2018-07-27 15:07:39

标签: c++ python-3.5 swig

我正在尝试使用SWIG将python3与C ++接口连接,并且不断抛出以下错误

>> ipc.sendMessage(q, b'qwe')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: in method 'sendMessage', argument 2 of type 'std::string'**

以下是附件:

ipc.i文件

%module ipc

%begin %{
    #define SWIG_PYTHON_STRICT_BYTE_CHAR
    #include "ipc.h"    
%}

%include std_string.i
%include stl.i
%include "ipc.h"

ipc.h文件

#include<string>

extern int createQueue();
extern bool sendMessage(int, std::string);
extern std::string receiveMessage(int);
extern bool removeQueue(int);

用于构建的命令

>> swig -c++ -python ipc.i
>> g++ -fpic -c ipc.h ipc_wrap.cxx ipc.cpp -I/usr/include/python3.5
>> gcc -shared ipc_wrap.o ipc.o -o _ipc.so -lstdc++

1 个答案:

答案 0 :(得分:0)

问题出在SWIG 3.0.8上,并在更新至3.0.10后得到解决。