Skip to content

Commit 526606b

Browse files
isidenticalmiss-islington
authored andcommitted
bpo-38994: Implement __class_getitem__ for PathLike (pythonGH-17498)
https://bugs.python.org/issue38994
1 parent cd90a52 commit 526606b

File tree

5 files changed

+13
-0
lines changed

5 files changed

+13
-0
lines changed

Lib/os.py

+3
Original file line numberDiff line numberDiff line change
@@ -1072,6 +1072,9 @@ def __fspath__(self):
10721072
def __subclasshook__(cls, subclass):
10731073
return hasattr(subclass, '__fspath__')
10741074

1075+
def __class_getitem__(cls, type):
1076+
return cls
1077+
10751078

10761079
if name == 'nt':
10771080
class _AddedDllDirectory:

Lib/pathlib.py

+3
Original file line numberDiff line numberDiff line change
@@ -777,6 +777,9 @@ def __ge__(self, other):
777777
return NotImplemented
778778
return self._cparts >= other._cparts
779779

780+
def __class_getitem__(cls, type):
781+
return cls
782+
780783
drive = property(attrgetter('_drv'),
781784
doc="""The drive prefix (letter or UNC path), if any.""")
782785

Lib/test/test_os.py

+3
Original file line numberDiff line numberDiff line change
@@ -4048,6 +4048,9 @@ def test_bad_pathlike(self):
40484048
self.assertRaises(ZeroDivisionError, self.fspath,
40494049
FakePath(ZeroDivisionError()))
40504050

4051+
def test_pathlike_class_getitem(self):
4052+
self.assertIs(os.PathLike[bytes], os.PathLike)
4053+
40514054

40524055
class TimesTests(unittest.TestCase):
40534056
def test_times(self):

Lib/test/test_pathlib.py

+3
Original file line numberDiff line numberDiff line change
@@ -2217,6 +2217,9 @@ def test_complex_symlinks_relative_dot_dot(self):
22172217
class PathTest(_BasePathTest, unittest.TestCase):
22182218
cls = pathlib.Path
22192219

2220+
def test_class_getitem(self):
2221+
self.assertIs(self.cls[str], self.cls)
2222+
22202223
def test_concrete_class(self):
22212224
p = self.cls('a')
22222225
self.assertIs(type(p),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Implement ``__class_getitem__`` for ``os.PathLike``, ``pathlib.Path``

0 commit comments

Comments
 (0)