MCPcopy Index your code
hub / github.com/python/cpython / islnk

Method islnk

Lib/tarfile.py:1693–1695  ·  view source on GitHub ↗

Return True if it is a hard link.

(self)

Source from the content-addressed store, hash-verified

1691 return self.type == SYMTYPE
1692
1693 def islnk(self):
1694 'Return True if it is a hard link.'
1695 return self.type == LNKTYPE
1696
1697 def ischr(self):
1698 'Return True if it is a character device.'

Callers 6

_get_filtered_attrsFunction · 0.80
listMethod · 0.80
_get_extract_tarinfoMethod · 0.80
extractfileMethod · 0.80
_extract_memberMethod · 0.80
test_compare_membersMethod · 0.80

Calls

no outgoing calls

Tested by 1

test_compare_membersMethod · 0.64