summaryrefslogtreecommitdiff
path: root/django/dispatch
AgeCommit message (Expand)Author
2014-03-03Fixed many typos in comments and docstrings.Rodolfo Carvalho
2014-02-05Simplified signal code.Florian Apolloner
2014-02-05Fixed #21952 -- signals deadlock due to locking + weakref interactionAnssi Kääriäinen
2014-01-12Fixed flake8 issues.Simon Charette
2014-01-12Added license info for the weakref backportsFlorian Apolloner
2014-01-09Fixed removal of signal receivers in Python 3.4Florian Apolloner
2013-12-14Fixed E127 pep8 warnings.Loic Bistuer
2013-11-23Fixed #21486 -- Prevented settings config in signal connectionClaude Paroz
2013-11-19Use `classmethod` as a decorator.xuxiang
2013-11-03Fixed flake8 E251 violationsMilton Mazzarri
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-11-02Fixed #21302 -- Fixed unused imports and import *.Tim Graham
2013-10-26Fixed up some more flake8 violations (this particular violation still has man...Alex Gaynor
2013-10-24Start attacking E231 violationsAlex Gaynor
2013-10-23Fixed E225 pep8 warnings.Tim Graham
2013-10-14Fixed #21266 -- Fixed E201,E202 pep8 warnings.Larry O'Neill
2013-10-11Fixed assorted flake8 errors.Tim Graham
2013-10-10Whitespace cleanup.Tim Graham
2013-08-20Fixed #20943 -- Weakly reference senders when caching their associated receiversSimon Charette
2013-02-25Fixed #19634 -- Added proper __hash__ methods.Aymeric Augustin
2012-12-16Fixed #16679 -- Use caching to speed up signal sendingAnssi Kääriäinen
2012-11-03Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
2012-09-28Added a way to check if a signal has listenersAnssi Kääriäinen
2012-08-15[py3] Fixed dispatch testsClaude Paroz
2012-08-08[py3] Replaced __nonzero__ by __bool__Claude Paroz
2012-07-22[py3] Added Python 3 compatibility for xrange.Aymeric Augustin
2012-06-23Switch to using context managers for acquiring and releasing locks.Alex Gaynor
2012-06-23Don't use a list comprehension when we don't need the resulting list.Alex Gaynor
2012-06-23Fixed #18454 -- Added ability to pass a list of signals to `receiver`.Dmitry Medvinsky
2012-05-18Got rid of old __cmp__methods replaced by rich comparison.Claude Paroz
2012-05-12Replaced im_func and im_self by __func__ and __self__.Claude Paroz
2012-04-30Replaced print statement by print function (forward compatibility syntax).Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-03-28Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty
2010-11-21Preventing problems possibly introduced by r14662Honza Král
2010-11-21Fixed #14533 -- Make django signals more thread-safe. Thanks milosu for the p...Honza Král
2010-11-02Fixed #14559 -- corrected some typos and misleading docstrings. Thanks to Ga...Alex Gaynor
2010-09-12Fixed #9015 -- added a signal decorator for simplifying signal connectionsBrian Rosner
2010-05-04Fixed #12164 -- Removed the Python 2.3 compatibility imports and workarounds....Russell Keith-Magee
2009-05-20Fixed #11134: signals recievers that disconnect during their processing no lo...Jacob Kaplan-Moss
2009-04-10Fixed #10753 -- Fixed regression in dispatcher after [10398]. Thanks for the ...Adrian Holovaty
2009-04-05Fixed #9989: fixed a subtle edge case where removing signals could break. Tha...Jacob Kaplan-Moss
2008-08-25Fixed #8285: signal handlers that aren't functions work under DEBUG. This sli...Jacob Kaplan-Moss
2008-08-10Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:Gary Wilson Jr
2008-08-06Major refactoring of django.dispatch with an eye towards speed. The net resul...Jacob Kaplan-Moss
2008-07-22Fixed #7847 -- Removed a whole bunch of unused imports from throughout the co...Adrian Holovaty
2007-10-21Fixed #5664 -- Added a Jython workaround for some assumptions in the signalMalcolm Tredinnick
2007-02-26Fixed #3439: vastly improved the performance of django.dispatch (and added te...Jacob Kaplan-Moss
2006-07-21Part 3 of pedant day: replaced all tabs in Django with spaces. Python the wa...Jacob Kaplan-Moss