summaryrefslogtreecommitdiff
path: root/django/dispatch/weakref_backports.py
AgeCommit message (Collapse)Author
2017-01-18Refs #23919 -- Removed six.PY2/PY3 usageClaude Paroz
Thanks Tim Graham for the review.
2015-09-28Moved and updated Python license.Tim Graham
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-01-12Added license info for the weakref backportsFlorian Apolloner
2014-01-09Fixed removal of signal receivers in Python 3.4Florian 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.