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.
1 parent cb03c5c commit 311c982Copy full SHA for 311c982
pyfakefs/fake_filesystem.py
@@ -3449,7 +3449,7 @@ def islink(self, path: AnyPath) -> bool:
3449
if sys.version_info >= (3, 12):
3450
3451
def isjunction(self, path: AnyPath) -> bool:
3452
- """Junction are never faked."""
+ """Returns False. Junctions are never faked."""
3453
return False
3454
3455
def confirmdir(
@@ -3720,7 +3720,7 @@ def islink(self, path: AnyStr) -> bool:
3720
3721
3722
def isjunction(self, path: AnyStr) -> bool:
3723
3724
return self.filesystem.isjunction(path)
3725
3726
def getmtime(self, path: AnyStr) -> float:
0 commit comments