Accessing std::wstring in Python using SWIG

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Shankar

    #1

    Accessing std::wstring in Python using SWIG

    Hello,

    I have a C++ dll with one class which has one public function.
    This function returns an std::list<std:: wstring> as an argout.
    I am using SWIG to generate Python extensions for this dll.

    I have the following code in python to access the string from the list.

    ..
    ..
    for item in myList:
    print str(item)
    ..
    ..

    When I run this program I see that the address of the string is printed, but
    not the actual content.
    Within Python code how can I dereference this wstring pointer to actually
    print the value and not the address.

    Thanks in advance,
    With best regards,
    Shankar


Working...