django/tests/regressiontests/dispatch/tests
Dmitry Medvinsky d4da08375b Fixed #18454 -- Added ability to pass a list of signals to `receiver`.
Added ability to use receiver decorator in the following way:

    @receiver([post_save, post_delete], sender=MyModel)
    def signals_receiver(sender, **kwargs):
        ...
2012-06-23 16:31:16 +02:00
..
__init__.py Fixed #18454 -- Added ability to pass a list of signals to `receiver`. 2012-06-23 16:31:16 +02:00
test_dispatcher.py Fixed #18454 -- Added ability to pass a list of signals to `receiver`. 2012-06-23 16:31:16 +02:00
test_saferef.py Fix the dispatch tests on python 2.5 2011-10-13 19:18:27 +00:00