diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2011-03-28 02:11:19 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2011-03-28 02:11:19 +0000 |
| commit | 13864703bc1d5dd4dac63c96c6a4b42a392bc57f (patch) | |
| tree | 64d070fb754332d47afc310daef2671c54e17988 /tests/regressiontests/forms | |
| parent | a87be3554fc73a567b926ea51c13ea844b5113f8 (diff) | |
Removed a bunch more Python 2.4 workarounds now that we don't support that version. Refs #15702 -- thanks to jonash for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15927 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/forms')
| -rw-r--r-- | tests/regressiontests/forms/tests/widgets.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/regressiontests/forms/tests/widgets.py b/tests/regressiontests/forms/tests/widgets.py index 4c5aeb0147..0a8a87949c 100644 --- a/tests/regressiontests/forms/tests/widgets.py +++ b/tests/regressiontests/forms/tests/widgets.py @@ -1,13 +1,14 @@ # -*- coding: utf-8 -*- + +import copy import datetime -from decimal import Decimal import re import time +from decimal import Decimal from django.conf import settings from django.core.files.uploadedfile import SimpleUploadedFile from django.forms import * from django.forms.widgets import RadioFieldRenderer -from django.utils import copycompat as copy from django.utils import formats from django.utils.safestring import mark_safe from django.utils.translation import activate, deactivate |
