From b2aad7b836bfde012756cca69291c14d2fdbd334 Mon Sep 17 00:00:00 2001 From: Thomas Chaumeny Date: Fri, 26 Sep 2014 14:31:50 +0200 Subject: Replaced set([foo, ...]) by {foo, ...} literals. Refs PR 3282. Thanks Collin Anderson for the review. --- docs/ref/signals.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs') diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt index 175d6599af..d1f5f3c78f 100644 --- a/docs/ref/signals.txt +++ b/docs/ref/signals.txt @@ -310,7 +310,7 @@ Argument Value ``model`` ``Topping`` (the class of the objects added to the ``Pizza``) -``pk_set`` ``set([t.id])`` (since only ``Topping t`` was added to the relation) +``pk_set`` ``{t.id}`` (since only ``Topping t`` was added to the relation) ``using`` ``"default"`` (since the default router sends writes here) ============== ============================================================ @@ -337,7 +337,7 @@ Argument Value ``model`` ``Pizza`` (the class of the objects removed from the ``Topping``) -``pk_set`` ``set([p.id])`` (since only ``Pizza p`` was removed from the +``pk_set`` ``{p.id}`` (since only ``Pizza p`` was removed from the relation) ``using`` ``"default"`` (since the default router sends writes here) -- cgit v1.3