I have a series of Python classes in a file. Some classes reference others.
My code is something like this:
class A(): pass class B(): c = C
This would solve your problem as presented (but I think you are really looking for an instance attribute as jholloway7 responded):
class A: pass class B: pass class C: pass B.c = C()