Skip to content

Commit

Permalink
Move inline comment to docstring and expand org.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco authored Nov 25, 2022
1 parent 25739bc commit 53e573b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion zipp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,10 @@ def match(self, path_pattern):
return pathlib.Path(self.at).match(path_pattern)

def is_symlink(self):
return False # See #82102
"""
Return whether this path is a symlink. Always false (python/cpython#82102).
"""
return False

def _descendants(self):
for child in self.iterdir():
Expand Down

0 comments on commit 53e573b

Please sign in to comment.