diff options
| author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-11-30 23:31:49 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-30 23:31:49 (GMT) |
| commit | 0076ca48e9cd116bb9d283d014fe69a72c9f1f6f (patch) | |
| tree | 399d85f6a34fd00420c375e8e57bb11a9f165055 /Lib/test/test_posixpath.py | |
| parent | f4511d3ee97a48d4a13e523d0892d0b62d0c491d (diff) | |
| download | cpython-0076ca48e9cd116bb9d283d014fe69a72c9f1f6f.zip cpython-0076ca48e9cd116bb9d283d014fe69a72c9f1f6f.tar.gz cpython-0076ca48e9cd116bb9d283d014fe69a72c9f1f6f.tar.bz2 | |
gh-96192: fix os.ismount() to use a path that is str or bytes (GH-96194)
(cherry picked from commit 367f552129341796d75fc4cc40edb49405235a2b)
Co-authored-by: Christoph Anton Mitterer <calestyo@scientia.org>
Signed-off-by: Christoph Anton Mitterer <mail@christoph.anton.mitterer.name>
Co-authored-by: Eryk Sun <eryksun@gmail.com>
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
Diffstat (limited to 'Lib/test/test_posixpath.py')
| -rw-r--r-- | Lib/test/test_posixpath.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py index c644f88..8a1dd13 100644 --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -178,6 +178,8 @@ class PosixPathTest(unittest.TestCase): def test_ismount(self): self.assertIs(posixpath.ismount("/"), True) self.assertIs(posixpath.ismount(b"/"), True) + self.assertIs(posixpath.ismount(FakePath("/")), True) + self.assertIs(posixpath.ismount(FakePath(b"/")), True) def test_ismount_non_existent(self): # Non-existent mountpoint. |
