Kaydet (Commit) 65d8657f authored tarafından Jannis Leidel's avatar Jannis Leidel

Fixed #15943 -- Documented `raw` argument of pre_save and post_save signals. Thanks, amplivibe.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16432 bcc190cf-cafb-0310-a4f2-bffc1f526a37
üst f8a3d87a
...@@ -114,6 +114,12 @@ Arguments sent with this signal: ...@@ -114,6 +114,12 @@ Arguments sent with this signal:
``instance`` ``instance``
The actual instance being saved. The actual instance being saved.
``raw``
A boolean; ``True`` if the model is saved exactly as presented
(i.e. when loading a fixture). One should not query/modify other
records in the database as the database might not be in a
consistent state yet.
.. versionadded:: 1.3 .. versionadded:: 1.3
``using`` ``using``
...@@ -139,6 +145,12 @@ Arguments sent with this signal: ...@@ -139,6 +145,12 @@ Arguments sent with this signal:
``created`` ``created``
A boolean; ``True`` if a new record was created. A boolean; ``True`` if a new record was created.
``raw``
A boolean; ``True`` if the model is saved exactly as presented
(i.e. when loading a fixture). One should not query/modify other
records in the database as the database might not be in a
consistent state yet.
.. versionadded:: 1.3 .. versionadded:: 1.3
``using`` ``using``
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment