(self, name)
| 763 | return error.checked_call(open, self.strpath, mode) |
| 764 | |
| 765 | def _fastjoin(self, name): |
| 766 | child = object.__new__(self.__class__) |
| 767 | child.strpath = self.strpath + self.sep + name |
| 768 | return child |
| 769 | |
| 770 | def islink(self): |
| 771 | return islink(self.strpath) |