summaryrefslogtreecommitdiff
path: root/tests/regressiontests/utils
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2011-10-13 12:53:02 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2011-10-13 12:53:02 +0000
commit43920cd32e24eb293b445028c7710b42f9abc7c4 (patch)
tree06adc32ae7706ce5238c5e9dee2e45aed4556677 /tests/regressiontests/utils
parent406f9d1fa0424e9861c2d20a1001dbf4e29d4c9c (diff)
Remove a handful of `import *` from the tests.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16973 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/utils')
-rw-r--r--tests/regressiontests/utils/datastructures.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/regressiontests/utils/datastructures.py b/tests/regressiontests/utils/datastructures.py
index d86a3c8fb8..aaac9ba477 100644
--- a/tests/regressiontests/utils/datastructures.py
+++ b/tests/regressiontests/utils/datastructures.py
@@ -6,7 +6,8 @@ import copy
import pickle
from django.test import SimpleTestCase
-from django.utils.datastructures import *
+from django.utils.datastructures import (DictWrapper, DotExpandedDict,
+ ImmutableList, MultiValueDict, MultiValueDictKeyError, MergeDict, SortedDict)
class SortedDictTests(SimpleTestCase):