%module(extranative="1") python_extranative %include %include %template(VectorString) std::vector; %inline %{ std::vector make_vector_string() { std::vector vs; vs.push_back("one"); vs.push_back("two"); return vs; } %}