summaryrefslogtreecommitdiff
path: root/django/dispatch/dispatcher.py
AgeCommit message (Expand)Author
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-06-25Refs #32508 -- Raised ImproperlyConfigured/TypeError instead of using "assert...Mateo Radman
2021-01-14Refs #31327 -- Removed providing_args argument for Signal per deprecation tim...Mariusz Felisiak
2020-12-15Fixed #32261 -- Added error logging to Signal.send_robust().Ayush Bansal
2020-03-05Fixed #31327 -- Deprecated providing_args argument for Signal.Jon Dufresne
2018-10-09Capitalized "Python" in docs and comments.Jon Dufresne
2018-01-03Fixed #28984 -- Made assorted code simplifications.Tim Graham
2017-12-26Fixed #28930 -- Simplified code with any() and all().Дилян Палаузов
2017-02-20Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257.Anton Samarchyan
2017-01-24Refs #23919 -- Removed __traceback__ setting needed for Python 2.Tim Graham
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
2017-01-17Refs #24205 -- Removed Signal.disconnect()'s weak argument.Tim Graham
2016-11-22Fixed #27513 -- Made Signal.send()/send_robust() a tiny bit faster.Adam Chainz
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-05-30Fixed #13080 -- Corrected accepted values of sender parameter in Signal.conne...Berker Peksag
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-01-12Corrected a few typos in Signal.send() docstring.Jarek Glowacki
2015-08-31Fixed #25331 -- Removed trailing blank lines in docstrings.Maxime Lorant
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
2015-06-18Removed support for Python 3.3.Tim Graham
2015-06-15Fixed #24979 -- Removed usage of inspect.getargspec().Tim Graham
2015-01-23Fixed #24205 -- Deprecated Signal.disconnect weak parameter.Florian Apolloner
2015-01-23Clarified docstring in dispatch/dispatcher.pyTim Graham
2015-01-02Added return value to Signal.disconnect().Andriy Sokolovskiy
2014-12-13Fixed #23812 -- Changed django.utils.six.moves.xrange imports to rangeMichael Hall
2014-12-02Fixed typo in django/dispatch/dispatcher.py docstring.jerry dumblauskas
2014-05-16Fixed #16245 -- Included traceback in send_robust()'s responseUnai Zalakain
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-09Fixed removal of signal receivers in Python 3.4Florian Apolloner
2013-11-23Fixed #21486 -- Prevented settings config in signal connectionClaude Paroz
2013-08-20Fixed #20943 -- Weakly reference senders when caching their associated receiversSimon Charette
2012-12-16Fixed #16679 -- Use caching to speed up signal sendingAnssi Kääriäinen
2012-09-28Added a way to check if a signal has listenersAnssi Kääriäinen
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-12Replaced im_func and im_self by __func__ and __self__.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
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