summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_compile.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-03-02 09:53:51 (GMT)
committerGitHub <noreply@github.com>2018-03-02 09:53:51 (GMT)
commitb21d155f57d284aecf9092a9bd24258293965c2f (patch)
tree3bf7797282fa3d3fc48e668214ae5f5c6bce1dff /Lib/test/test_compile.py
parentbf63e8d55fd2853df3bb99d66de7f428107aadb3 (diff)
downloadcpython-b21d155f57d284aecf9092a9bd24258293965c2f.zip
cpython-b21d155f57d284aecf9092a9bd24258293965c2f.tar.gz
cpython-b21d155f57d284aecf9092a9bd24258293965c2f.tar.bz2
bpo-32964: Reuse a testing implementation of the path protocol in tests. (#5930)
Diffstat (limited to 'Lib/test/test_compile.py')
-rw-r--r--Lib/test/test_compile.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/Lib/test/test_compile.py b/Lib/test/test_compile.py
index 4617a12..acebdbd 100644
--- a/Lib/test/test_compile.py
+++ b/Lib/test/test_compile.py
@@ -6,7 +6,7 @@ import _ast
import tempfile
import types
from test import support
-from test.support import script_helper
+from test.support import script_helper, FakePath
class TestSpecifics(unittest.TestCase):
@@ -663,13 +663,7 @@ if 1:
def test_path_like_objects(self):
# An implicit test for PyUnicode_FSDecoder().
- class PathLike:
- def __init__(self, path):
- self._path = path
- def __fspath__(self):
- return self._path
-
- compile("42", PathLike("test_compile_pathlike"), "single")
+ compile("42", FakePath("test_compile_pathlike"), "single")
def test_stack_overflow(self):
# bpo-31113: Stack overflow when compile a long sequence of