Robert Bradshaw wrote: > class A: > pass > > cdef class B: > pass > > Then there will be exactly one instance of A and one instance of B > floating around Um, no, there are *no* instances of A or B until you create some, e.g. a = A() b = B() -- Greg