In the example:: class Restaurant(Model): place = OneToOneField(Place, related_name='restaurant') ``Restaurant.place`` is a ``ForwardOneToOneDescriptor`` instance.
This method overrides django.db.models.fields.related_descriptors.ForwardManyToOneDescriptor.__set__.
With the example above, when setting ``child.parent = parent``: - ``self`` is the descriptor managing the ``parent`` attribute - ``instance`` is the ``child`` instance - ``value`` is the ``parent`` instance on the right of the equal sign
This method overrides django.db.models.fields.related_descriptors.ForwardManyToOneDescriptor.get_object.