diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-08-07 15:41:54 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2012-08-08 14:50:01 +0200 |
| commit | 396357741b88dfcd85486db673dbb822da8b2de0 (patch) | |
| tree | 1a9a659339554858109be3e5cfafc188397699bf /tests/regressiontests/requests/tests.py | |
| parent | 2da3af23aa10af3e06536a46134b1053f80eb8b2 (diff) | |
[py3] Used compatible imports of StringIO.
Diffstat (limited to 'tests/regressiontests/requests/tests.py')
| -rw-r--r-- | tests/regressiontests/requests/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/regressiontests/requests/tests.py b/tests/regressiontests/requests/tests.py index 146dca2b7b..f192459246 100644 --- a/tests/regressiontests/requests/tests.py +++ b/tests/regressiontests/requests/tests.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals import time import warnings from datetime import datetime, timedelta -from StringIO import StringIO from django.conf import settings from django.core.handlers.wsgi import WSGIRequest, LimitedStream @@ -11,6 +10,7 @@ from django.http import HttpRequest, HttpResponse, parse_cookie, build_request_r from django.test.utils import str_prefix from django.utils import unittest from django.utils.http import cookie_date +from django.utils.six import StringIO from django.utils.timezone import utc |
