We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2678a5e + e607812 commit 8806606Copy full SHA for 8806606
CHANGES.rst
@@ -1,3 +1,9 @@
1
+v4.6.4
2
+======
3
+
4
+* #334: Correct ``SimplePath`` protocol to match ``pathlib``
5
+ protocol for ``__truediv``.
6
7
v4.6.3
8
======
9
importlib_metadata/_meta.py
@@ -38,7 +38,7 @@ class SimplePath(Protocol):
38
def joinpath(self) -> 'SimplePath':
39
... # pragma: no cover
40
41
- def __div__(self) -> 'SimplePath':
+ def __truediv__(self) -> 'SimplePath':
42
43
44
def parent(self) -> 'SimplePath':
0 commit comments