From b98d77c546835aeded413cd7048e503f0158f387 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Fri, 6 Dec 2019 11:15:03 -0800 Subject: Appease Python 2.7 --- setup.py | 2 ++ tests/test_from_fixtures.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d51c902..dd0a391 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,5 @@ +from io import open + from setuptools import setup from uritemplate import __version__ diff --git a/tests/test_from_fixtures.py b/tests/test_from_fixtures.py index 4b92081..d6c9810 100644 --- a/tests/test_from_fixtures.py +++ b/tests/test_from_fixtures.py @@ -1,3 +1,4 @@ +import io import json import os.path @@ -12,7 +13,7 @@ def fixture_file_path(filename): def load_examples(filename): path = fixture_file_path(filename) - with open(path, 'r', encoding="utf-8") as examples_file: + with io.open(path, 'r', encoding="utf-8") as examples_file: examples = json.load(examples_file) return examples -- cgit v1.2.3