Changes between Version 21 and Version 22 of Signals


Ignore:
Timestamp:
Jun 23, 2008, 8:24:20 PM (16 years ago)
Author:
Stefan Tjarks <stefan at tjarks dot de>
Comment:

update pre_create and post_create signal arguments

Legend:

Unmodified
Added
Removed
Modified
  • Signals

    v21 v22  
    127127 * `sender` -- the model class of the object being saved.
    128128 * `instance` -- the actual object being saved.
     129 * `raw` -- raw save, save the object exactly as presented.
    129130
    130131'''post_save'''
     
    136137 * `sender` -- the model class of the object which was just saved.
    137138 * `instance` -- the actual object which was just saved.
     139 * `created` -- a boolean. True if a new record was create.
     140 * `raw` -- raw save, save the object exactly as presented.
    138141
    139142'''pre_delete'''
Back to Top