[1.8.x] Corrected a few typos in Signal.send() docstring.

Backport of c68ce18712 from master
This commit is contained in:
Jarek Glowacki 2016-01-12 12:46:07 +11:00 committed by Tim Graham
parent 6011d3a156
commit e625859f08
1 changed files with 3 additions and 3 deletions

View File

@ -168,13 +168,13 @@ class Signal(object):
Send signal from sender to all connected receivers.
If any receiver raises an error, the error propagates back through send,
terminating the dispatch loop, so it is quite possible to not have all
receivers called if a raises an error.
terminating the dispatch loop. So it's possible that all receivers
won't be called if an error is raised.
Arguments:
sender
The sender of the signal Either a specific object or None.
The sender of the signal. Either a specific object or None.
named
Named arguments which will be passed to receivers.