Opened 16 years ago
Closed 16 years ago
#12984 closed (fixed)
type in signals documentation
| Reported by: | kcharvey | Owned by: | nobody |
|---|---|---|---|
| Component: | Documentation | Version: | 1.1 |
| Severity: | Keywords: | ||
| Cc: | Triage Stage: | Ready for checkin | |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
http://docs.djangoproject.com/en/dev/ref/signals/#ref-signals Last line:
django.db.models.signals.post_save¶
Like pre_save, but sent at the end of the save() method.
Arguments sent with this signal:
sender
The model class.
instance
The actual instance being saved.
created
A boolean; True if a new record was create.
Attachments (1)
Change History (3)
by , 16 years ago
| Attachment: | 12984.diff added |
|---|
comment:1 by , 16 years ago
| Has patch: | set |
|---|---|
| Triage Stage: | Unreviewed → Ready for checkin |
comment:2 by , 16 years ago
| Resolution: | → fixed |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [13210]) Fixed #12984 -- Corrected typo in signals docs. Thanks to kcharvey for the report.