Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/dispatch/weakref_backports.py
Commit message (Collapse)AuthorAgeFilesLines
* Moved and updated Python license.Tim Graham2015-09-281-2/+1
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-1/+0
|
* Added license info for the weakref backportsFlorian Apolloner2014-01-121-1/+8
|
* Fixed removal of signal receivers in Python 3.4Florian Apolloner2014-01-091-0/+62
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.