From 24f4764a48e4141923a78c8820e4cd7b411ec0fc Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Wed, 13 Jul 2011 09:35:51 +0000 Subject: Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for the work on the patch and Alex for reviewing. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/dispatch/saferef.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'django/dispatch') diff --git a/django/dispatch/saferef.py b/django/dispatch/saferef.py index f446447b46..1c7d16474f 100644 --- a/django/dispatch/saferef.py +++ b/django/dispatch/saferef.py @@ -5,7 +5,8 @@ Provides a way to safely weakref any function, including bound methods (which aren't handled by the core weakref module). """ -import weakref, traceback +import traceback +import weakref def safeRef(target, onDelete = None): """Return a *safe* weak reference to a callable target -- cgit v1.3