Robert Bradshaw wrote: > I actually think unicode -> bytes is weirder than unicode -> char* > (because the latter is the best C has to offer for strings), though > it's messier from a null-bytes and memory-management perspective.
Another way of thinking about it is that unicode -> bytes is the same thing as unicode -> char *, it's just that you're making use of Python to manage the memory for you. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
