Search Results

2
votes

Passing a Python array to a C++ vector using Swig

It depends on if your function is already written and cannot be changed, in which case you may need to check Swig docs to see if there is already a typemap from PyList to std::vector (I think there …
9
votes

Python dictionary clear

d = {} will create a new instance for d but all other references will still point to the old contents. .clear() will reset the contents, but all references to the same instance will still be correc …