Implement support for std::vector without std_vector.i
问题 Okay, I've already asked 2 questions about my problem and despite the fact that the replies were really helpful, I am not able to find an optimal solution for my problem. Let me explain my main objective/problem now. Due to some constraints I can't use std_vector.i in my swig interface, but I need to use a C++ object of (vector of vectors of string) vector<vector<string>> in Python. I implemented a solution where I am converting whole vector<vector<string> > to Python "List of Lists" wherein