| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-01-14 | Refs #31327 -- Removed providing_args argument for Signal per deprecation ↵ | Mariusz Felisiak | |
| timeline. | |||
| 2020-12-15 | Fixed #32261 -- Added error logging to Signal.send_robust(). | Ayush Bansal | |
| 2020-03-05 | Fixed #31327 -- Deprecated providing_args argument for Signal. | Jon Dufresne | |
| 2018-10-09 | Capitalized "Python" in docs and comments. | Jon Dufresne | |
| 2018-04-17 | Fixed #29334 -- Updated pypi.python.org URLs to pypi.org. | Brett Cannon | |
| 2018-01-03 | Fixed #28984 -- Made assorted code simplifications. | Tim Graham | |
| 2017-12-26 | Fixed #28930 -- Simplified code with any() and all(). | Дилян Палаузов | |
| 2017-02-20 | Refs #27656 -- Updated django.forms/http docstring verbs according to PEP 257. | Anton Samarchyan | |
| 2017-01-24 | Refs #23919 -- Removed __traceback__ setting needed for Python 2. | Tim Graham | |
| Partially reverted refs #25761 and refs #16245. | |||
| 2017-01-19 | Refs #23919 -- Stopped inheriting from object to define new style classes. | Simon Charette | |
| 2017-01-18 | Refs #23919 -- Removed most of remaining six usage | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2017-01-18 | Refs #23919 -- Removed six.PY2/PY3 usage | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2017-01-17 | Refs #24205 -- Removed Signal.disconnect()'s weak argument. | Tim Graham | |
| Per deprecation timeline. | |||
| 2016-11-22 | Fixed #27513 -- Made Signal.send()/send_robust() a tiny bit faster. | Adam Chainz | |
| 2016-11-14 | Fixed E305 flake8 warnings. | Ramin Farajpour Cami | |
| 2016-05-30 | Fixed #13080 -- Corrected accepted values of sender parameter in ↵ | Berker Peksag | |
| Signal.connect() docstring. | |||
| 2016-04-08 | Fixed E128 flake8 warnings in django/. | Tim Graham | |
| 2016-01-12 | Corrected a few typos in Signal.send() docstring. | Jarek Glowacki | |
| 2015-09-28 | Moved and updated Python license. | Tim Graham | |
| 2015-08-31 | Fixed #25331 -- Removed trailing blank lines in docstrings. | Maxime Lorant | |
| 2015-06-24 | Renamed RemovedInDjangoXYWarnings for new roadmap. | Tim Graham | |
| Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more. | |||
| 2015-06-18 | Removed support for Python 3.3. | Tim Graham | |
| 2015-06-15 | Fixed #24979 -- Removed usage of inspect.getargspec(). | Tim Graham | |
| 2015-02-06 | Sorted imports with isort; refs #23860. | Tim Graham | |
| 2015-01-23 | Fixed #24205 -- Deprecated Signal.disconnect weak parameter. | Florian Apolloner | |
| 2015-01-23 | Clarified docstring in dispatch/dispatcher.py | Tim Graham | |
| 2015-01-02 | Added return value to Signal.disconnect(). | Andriy Sokolovskiy | |
| 2014-12-13 | Fixed #23812 -- Changed django.utils.six.moves.xrange imports to range | Michael Hall | |
| 2014-12-02 | Fixed typo in django/dispatch/dispatcher.py docstring. | jerry dumblauskas | |
| 2014-05-16 | Fixed #16245 -- Included traceback in send_robust()'s response | Unai Zalakain | |
| Exceptions from the (receiver, exception) tuples returned by ``send_robust()`` now have always their traceback attached as their ``__traceback__`` argument. | |||
| 2014-03-03 | Fixed many typos in comments and docstrings. | Rodolfo Carvalho | |
| Thanks Piotr Kasprzyk for help with the patch. | |||
| 2014-02-05 | Simplified signal code. | Florian Apolloner | |
| Refs #21952 | |||
| 2014-02-05 | Fixed #21952 -- signals deadlock due to locking + weakref interaction | Anssi Kääriäinen | |
| 2014-01-12 | Fixed flake8 issues. | Simon Charette | |
| 2014-01-12 | Added license info for the weakref backports | Florian Apolloner | |
| 2014-01-09 | Fixed removal of signal receivers in Python 3.4 | Florian Apolloner | |
| Make use of `weakref.finalize` and `weakref.WeakMethod` on python 3.4. Simplified the removal of receivers, the old function looked overly complicated. Many thanks go to Antoine Pitrou for helping me to debug and explain all the failures I ran into while writing that patch. | |||
| 2013-12-14 | Fixed E127 pep8 warnings. | Loic Bistuer | |
| 2013-11-23 | Fixed #21486 -- Prevented settings config in signal connection | Claude Paroz | |
| This was particularly problematic in the chain get_wsgi_application -> db.connections import -> signal connection -> settings configuration. Thanks Jon Dufresne for the report. | |||
| 2013-11-19 | Use `classmethod` as a decorator. | xuxiang | |
| 2013-11-03 | Fixed flake8 E251 violations | Milton Mazzarri | |
| 2013-11-02 | More attacking E302 violators | Alex Gaynor | |
| 2013-11-02 | Fixed #21302 -- Fixed unused imports and import *. | Tim Graham | |
| 2013-10-26 | Fixed up some more flake8 violations (this particular violation still has ↵ | Alex Gaynor | |
| many occurrences in the tests/ dir so it can't be removed from setup.cfg yet) | |||
| 2013-10-24 | Start attacking E231 violations | Alex Gaynor | |
| 2013-10-23 | Fixed E225 pep8 warnings. | Tim Graham | |
| 2013-10-14 | Fixed #21266 -- Fixed E201,E202 pep8 warnings. | Larry O'Neill | |
| 2013-10-11 | Fixed assorted flake8 errors. | Tim Graham | |
| 2013-10-10 | Whitespace cleanup. | Tim Graham | |
| * Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs. | |||
| 2013-08-20 | Fixed #20943 -- Weakly reference senders when caching their associated receivers | Simon Charette | |
| 2013-02-25 | Fixed #19634 -- Added proper __hash__ methods. | Aymeric Augustin | |
| Classes overriding __eq__ need a __hash__ such that equal objects have the same hash. Thanks akaariai for the report and regebro for the patch. | |||
