Re: [Discuss-gnuradio] SWIG std::vector issue

2016-08-02 Thread Dave NotTelling
Thank you very much Marcus! I'll give that a go later today :D On Tue, Aug 2, 2016 at 2:38 AM, Marcus Müller wrote: > Hi Dave, > > that's a bit hard to tell without context; generally, Python can construct > wrapper code for std::vector that makes those iterable, and handles the > interna a bit

Re: [Discuss-gnuradio] SWIG std::vector issue

2016-08-01 Thread Marcus Müller
Hi Dave, that's a bit hard to tell without context; generally, Python can construct wrapper code for std::vector that makes those iterable, and handles the interna a bit different, but with PMTs the non-bracket method of access might work: your_vector_of_pmts_in_python.at(index) if that works, y

Re: [Discuss-gnuradio] SWIG std::vector issue

2016-08-01 Thread Dave NotTelling
Anyone able to help with this? I had to create helper methods to serialize the PMT objects and return a vector of strings. Not the best solution :( On Thu, Jul 28, 2016 at 11:04 AM, Dave NotTelling wrote: > I have a utility lib in C++ created with 'gr_modtool add noblock' that has > a function

[Discuss-gnuradio] SWIG std::vector issue

2016-07-28 Thread Dave NotTelling
I have a utility lib in C++ created with 'gr_modtool add noblock' that has a function that returns a vector of pmt::pmt_t values. I need to then be able to access the elements of that vector via Python. Right now I get the following error when using a for loop to iterate over the vector: TypeEr