Python 3: the StringIO module is gone

Fixes 17 failing tests on Python 3.4, restoring the 8 failures we had
last Friday.
pull/12540/head
Marius Gedminas 9 years ago
parent 4cd810a674
commit 9b39af8e9a

@ -19,13 +19,12 @@
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
import StringIO
import ast
import contextlib
import os
import re
from six import string_types, text_type, binary_type
from six import string_types, text_type, binary_type, StringIO
from jinja2 import Environment
from jinja2.loaders import FileSystemLoader
from jinja2.exceptions import TemplateSyntaxError, UndefinedError
@ -214,7 +213,7 @@ class Templar:
if not isinstance(orig_data, string_types):
return orig_data
with contextlib.closing(StringIO.StringIO(orig_data)) as data:
with contextlib.closing(StringIO(orig_data)) as data:
# these variables keep track of opening block locations, as we only
# want to replace matched pairs of print/block tags
print_openings = []

Loading…
Cancel
Save