Defining circular references using zope.schema
问题 I'm trying to do the following, define two classes whose instances mutually reference one another, like Users and Groups in the following exemple. A User can belong to several groups and a Group can contains several users. The actual data is stored in a database and there it is a simple matter of many-to-many relationship using foreign keys. No problem at all. Afterward the data is loaded through an ORM and stored in instances of python objects. Still no problem at all as the ORM used