Ticket #19579: 19579.diff
File 19579.diff, 526 bytes (added by , 12 years ago) |
---|
-
docs/topics/signals.txt
diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt index 5ea0895..d611da4 100644
a b Defining signals 213 213 214 214 All signals are :class:`django.dispatch.Signal` instances. The 215 215 ``providing_args`` is a list of the names of arguments the signal will provide 216 to listeners. 216 to listeners. This is purely documentational, however, as there is nothing that 217 checks that the signal actually provides these arguments to its listeners. 217 218 218 219 For example: 219 220