1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

[py3] Used compatible imports of StringIO.

This commit is contained in:
Aymeric Augustin
2012-08-07 15:41:54 +02:00
parent 2da3af23aa
commit 396357741b
15 changed files with 22 additions and 26 deletions

View File

@@ -3,11 +3,11 @@ A series of tests to establish that the command-line bash completion works.
"""
import os
import sys
import StringIO
from django.conf import settings
from django.core.management import ManagementUtility
from django.utils import unittest
from django.utils.six import StringIO
class BashCompletionTests(unittest.TestCase):
@@ -20,7 +20,7 @@ class BashCompletionTests(unittest.TestCase):
def setUp(self):
self.old_DJANGO_AUTO_COMPLETE = os.environ.get('DJANGO_AUTO_COMPLETE')
os.environ['DJANGO_AUTO_COMPLETE'] = '1'
self.output = StringIO.StringIO()
self.output = StringIO()
self.old_stdout = sys.stdout
sys.stdout = self.output