diff options
author | Kyungmin Lee <rekyungmin@gmail.com> | 2021-10-20 19:54:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 19:54:41 (GMT) |
commit | 6270d3eeaf17b50abc4f8f4d97790d66179638e4 (patch) | |
tree | 23d348dc9a50d984a40f12ed968080e973bda6f8 /Lib/test/test_tempfile.py | |
parent | bc85eb7a4f16e9e2b6fb713be2466ebb132fd7f2 (diff) | |
download | cpython-6270d3eeaf17b50abc4f8f4d97790d66179638e4.zip cpython-6270d3eeaf17b50abc4f8f4d97790d66179638e4.tar.gz cpython-6270d3eeaf17b50abc4f8f4d97790d66179638e4.tar.bz2 |
bpo-45192: Fix a bug that infers the type of an os.PathLike[bytes] object as str (GH-28323)
An object implementing the os.PathLike protocol can represent a file
system path as a str or bytes object.
Therefore, _infer_return_type function should infer os.PathLike[str]
object as str type and os.PathLike[bytes] object as bytes type.
Diffstat (limited to 'Lib/test/test_tempfile.py')
-rw-r--r-- | Lib/test/test_tempfile.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Lib/test/test_tempfile.py b/Lib/test/test_tempfile.py index 96946a2..2b0ec46 100644 --- a/Lib/test/test_tempfile.py +++ b/Lib/test/test_tempfile.py @@ -62,6 +62,25 @@ class TestLowLevelInternals(unittest.TestCase): def test_infer_return_type_pathlib(self): self.assertIs(str, tempfile._infer_return_type(pathlib.Path('/'))) + def test_infer_return_type_pathlike(self): + class Path: + def __init__(self, path): + self.path = path + + def __fspath__(self): + return self.path + + self.assertIs(str, tempfile._infer_return_type(Path('/'))) + self.assertIs(bytes, tempfile._infer_return_type(Path(b'/'))) + self.assertIs(str, tempfile._infer_return_type('', Path(''))) + self.assertIs(bytes, tempfile._infer_return_type(b'', Path(b''))) + self.assertIs(bytes, tempfile._infer_return_type(None, Path(b''))) + self.assertIs(str, tempfile._infer_return_type(None, Path(''))) + + with self.assertRaises(TypeError): + tempfile._infer_return_type('', Path(b'')) + with self.assertRaises(TypeError): + tempfile._infer_return_type(b'', Path('')) # Common functionality. |