Ticket #14477: signals.patch
File signals.patch, 805 bytes (added by , 14 years ago) |
---|
-
ref/signals.txt
270 270 271 271 ``instance`` ``p`` (the ``Pizza`` instance being modified) 272 272 273 ``action`` ``" add"``273 ``action`` ``"pre_add"/"post_add"`` 274 274 275 275 ``reverse`` ``False`` (``Pizza`` contains the :class:`ManyToManyField`, 276 276 so this call modifies the forward relation) … … 298 298 299 299 ``instance`` ``t`` (the ``Topping`` instance being modified) 300 300 301 ``action`` ``" remove"``301 ``action`` ``"pre_remove"/"post_remove"`` 302 302 303 303 ``reverse`` ``True`` (``Pizza`` contains the :class:`ManyToManyField`, 304 304 so this call modifies the reverse relation)