summaryrefslogtreecommitdiff
path: root/django/dispatch/dispatcher.py
Commit message (Expand)AuthorAgeFilesLines
* Capitalized "Python" in docs and comments.Jon Dufresne2018-10-091-1/+1
* Fixed #28984 -- Made assorted code simplifications.Tim Graham2018-01-031-6/+4
* Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов2017-12-261-4/+1
* Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257.Anton Samarchyan2017-02-201-6/+4
* Refs #23919 -- Removed __traceback__ setting needed for Python 2.Tim Graham2017-01-241-5/+1
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-1/+0
* Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz2017-01-181-12/+3
* Refs #24205 -- Removed Signal.disconnect()'s weak argument.Tim Graham2017-01-171-5/+1
* Fixed #27513 -- Made Signal.send()/send_robust() a tiny bit faster.Adam Chainz2016-11-221-8/+7
* Fixed E305 flake8 warnings.Ramin Farajpour Cami2016-11-141-0/+2
* Fixed #13080 -- Corrected accepted values of sender parameter in Signal.conne...Berker Peksag2016-05-301-1/+1
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-2/+1
* 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