mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
* The purely documentational providing_args argument for Signal is deprecated. If you rely on this argument as documentation, you can move the text to a code comment or docstring.
4 lines
104 B
Python
4 lines
104 B
Python
from django.dispatch.dispatcher import Signal
|
|
|
|
# providing_args=['message']
|
|
message_received = Signal()
|