Robert Bradshaw wrote: > Now one thing I've realized since starting to look at this is > namespaces can be more than just dotted Python identifiers, e.g. one > has "std::vector<T>::iterator."
The consistent way to handle that would be using a
cname, e.g.
cdef extern from "..." namespace std.vector "std::vector<T>":
...
--
Greg
_______________________________________________
Cython-dev mailing list
[email protected]
http://codespeak.net/mailman/listinfo/cython-dev
