Lisandro Dalcin wrote: > - Indentifiers and (unicode) string literals can (and should) managed > in the same table. This way, 'a.foo' will be as efficient as > 'getattr(a, "foo")'
I can't answer that without knowing a bit more about the C API in Py3k. If the Py3k equivalent of PyObject_GetAttr etc. take unicode string objects, then yes, that would be correct. > - Byte strings are completelly different guys, so they should be > managed in a way similar to integer literals are. Yes. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
