How about mutual recursion? class LinkedListA(TypeDef): typedef = (int, LinkedListB)
class LinkedListB(TypeDef): typedef = (int, LinkedListA) -- http://mail.python.org/mailman/listinfo/python-list
How about mutual recursion? class LinkedListA(TypeDef): typedef = (int, LinkedListB)
class LinkedListB(TypeDef): typedef = (int, LinkedListA) -- http://mail.python.org/mailman/listinfo/python-list