1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +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

@@ -12,13 +12,13 @@ if __name__ == '__main__':
import sys
import pkg_resources
import imp
import StringIO
import os.path
from django.template import TemplateDoesNotExist, Context
from django.template.loaders.eggs import Loader as EggLoader
from django.template import loader
from django.utils import unittest
from django.utils.six import StringIO
# Mock classes and objects for pkg_resources functions.
@@ -61,8 +61,8 @@ class EggLoaderTest(unittest.TestCase):
self.empty_egg = create_egg("egg_empty", {})
self.egg_1 = create_egg("egg_1", {
os.path.normcase('templates/y.html') : StringIO.StringIO("y"),
os.path.normcase('templates/x.txt') : StringIO.StringIO("x"),
os.path.normcase('templates/y.html') : StringIO("y"),
os.path.normcase('templates/x.txt') : StringIO("x"),
})
self._old_installed_apps = settings.INSTALLED_APPS
settings.INSTALLED_APPS = []