Lisandro Dalcin wrote: > Greg, what do you think? You said that Cython/Pyrex string tables > cannot contain a mix of 'str' and 'bytes' instances, but I do not > realize where the actual problem is.
There may not be one, depending on how Cython handles things internally. I think what I really meant to say is that I didn't see any *need* to combine the tables, since "xxx" and b"xxx" are clearly different things right from the beginning. But I can see that it might be different if you're trying to support both py2 and py3 interpretations of the same source. If you have some reason for and way of combining them into a single table, that's fine. The end result is all that really matters. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
