Robert Bradshaw wrote: > Note also that PyObject_TypeCheck checks for types, and normal python > classes aren't types.
Old-style classes aren't types, but nowadays I'd say that new-style classes are regarded as equally "normal", perhaps more so. Anyway, this makes no difference for testing against builtin or extension types, which are always new-style. -- Greg _______________________________________________ Cython-dev mailing list [email protected] http://codespeak.net/mailman/listinfo/cython-dev
