From 4c05fdb467d1de68348401fc47869e8f35dcc278 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Sat, 23 Feb 2013 15:33:43 -0500 Subject: [PATCH] Fixed #19579 - Documented that "providing_args" is purely documentational. --- docs/topics/signals.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt index 5ea0895c42..d611da4a37 100644 --- a/docs/topics/signals.txt +++ b/docs/topics/signals.txt @@ -213,7 +213,8 @@ Defining signals All signals are :class:`django.dispatch.Signal` instances. The ``providing_args`` is a list of the names of arguments the signal will provide -to listeners. +to listeners. This is purely documentational, however, as there is nothing that +checks that the signal actually provides these arguments to its listeners. For example: