summaryrefslogtreecommitdiff
path: root/django/dispatch/dispatcher.py
Commit message (Expand)AuthorAgeFilesLines
* Corrected a few typos in Signal.send() docstring.Jarek Glowacki2016-01-121-3/+3
* Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant2015-08-311-1/+0
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-2/+2
* Removed support for Python 3.3.Tim Graham2015-06-181-2/+3
* Fixed #24979 -- Removed usage of inspect.getargspec().Tim Graham2015-06-151-15/+3
* Fixed #24205 -- Deprecated Signal.disconnect weak parameter.Florian Apolloner2015-01-231-4/+6
* Clarified docstring in dispatch/dispatcher.pyTim Graham2015-01-231-3/+3
* Added return value to Signal.disconnect().Andriy Sokolovskiy2015-01-021-0/+3
* Fixed #23812 -- Changed django.utils.six.moves.xrange imports to rangeMichael Hall2014-12-131-2/+2
* Fixed typo in django/dispatch/dispatcher.py docstring.jerry dumblauskas2014-12-021-1/+1
* Fixed #16245 -- Included traceback in send_robust()'s responseUnai Zalakain2014-05-161-1/+4
* Fixed many typos in comments and docstrings.Rodolfo Carvalho2014-03-031-1/+1
* Simplified signal code.Florian Apolloner2014-02-051-12/+9
* Fixed #21952 -- signals deadlock due to locking + weakref interactionAnssi Kääriäinen2014-02-051-14/+23
* Fixed flake8 issues.Simon Charette2014-01-121-1/+1
* Fixed removal of signal receivers in Python 3.4Florian Apolloner2014-01-091-27/+36
* Fixed #21486 -- Prevented settings config in signal connectionClaude Paroz2013-11-231-1/+1
* Fixed #20943 -- Weakly reference senders when caching their associated receiversSimon Charette2013-08-201-4/+8
* Fixed #16679 -- Use caching to speed up signal sendingAnssi Kääriäinen2012-12-161-22/+51
* Added a way to check if a signal has listenersAnssi Kääriäinen2012-09-281-0/+3
* [py3] Added Python 3 compatibility for xrange.Aymeric Augustin2012-07-221-19/+20
* Switch to using context managers for acquiring and releasing locks.Alex Gaynor2012-06-231-13/+4
* Don't use a list comprehension when we don't need the resulting list.Alex Gaynor2012-06-231-1/+2
* Fixed #18454 -- Added ability to pass a list of signals to `receiver`.Dmitry Medvinsky2012-06-231-2/+9
* Replaced im_func and im_self by __func__ and __self__.Claude Paroz2012-05-121-2/+2
* Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz2012-04-291-1/+1
* Preventing problems possibly introduced by r14662Honza Král2010-11-211-3/+3
* Fixed #14533 -- Make django signals more thread-safe. Thanks milosu for the p...Honza Král2010-11-211-18/+35
* Fixed #14559 -- corrected some typos and misleading docstrings. Thanks to Ga...Alex Gaynor2010-11-021-5/+5
* Fixed #9015 -- added a signal decorator for simplifying signal connectionsBrian Rosner2010-09-121-0/+16
* Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee2010-05-041-4/+0
* Fixed #11134: signals recievers that disconnect during their processing no lo...Jacob Kaplan-Moss2009-05-201-73/+98
* Fixed #10753 -- Fixed regression in dispatcher after [10398]. Thanks for the ...Adrian Holovaty2009-04-101-0/+1
* Fixed #9989: fixed a subtle edge case where removing signals could break. Tha...Jacob Kaplan-Moss2009-04-051-3/+4
* Fixed #8285: signal handlers that aren't functions work under DEBUG. This sli...Jacob Kaplan-Moss2008-08-251-2/+18
* Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:Gary Wilson Jr2008-08-101-45/+0
* Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss2008-08-061-457/+205
* Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...Adrian Holovaty2008-07-221-16/+16
* Fixed #3439: vastly improved the performance of django.dispatch (and added te...Jacob Kaplan-Moss2007-02-261-60/+58
* Part 3 of pedant day: replaced all tabs in Django with spaces. Python the wa...Jacob Kaplan-Moss2006-07-211-431/+431
* MERGED MAGIC-REMOVAL BRANCH TO TRUNK. This change is highly backwards-incompa...Adrian Holovaty2006-05-021-0/+497