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
This commit is contained in:
Jannis Leidel
2011-07-13 09:35:51 +00:00
parent e9b3e5e5e0
commit 02739f8478
5 changed files with 0 additions and 12 deletions

View File

@@ -2,12 +2,6 @@
Formtools Preview application.
"""
try:
import cPickle as pickle
except ImportError:
import pickle
from django.conf import settings
from django.http import Http404
from django.shortcuts import render_to_response
from django.template.context import RequestContext

View File

@@ -5,7 +5,6 @@ except ImportError:
import hashlib
from django.conf import settings
from django.forms import BooleanField
from django.utils.crypto import salted_hmac

View File

@@ -1,4 +1,3 @@
from django.core.files.uploadedfile import UploadedFile
from django.contrib.formtools.wizard import storage

View File

@@ -1,9 +1,6 @@
import os
from django.core.urlresolvers import reverse
from django.http import QueryDict
from django.test import TestCase
from django.conf import settings
from django.contrib.auth.models import User

View File

@@ -1,4 +1,3 @@
import copy
import re
from django import forms