Lines Matching refs:pathname
1040 def set_content(self, content=None, excludes=EmptyI, pathname=None,
1052 'pathname' is an optional filename containing the location of
1057 when 'content' is a string or 'pathname' is provided.
1060 assert content is not None or pathname is not None
1061 assert not (content and pathname)
1076 if pathname:
1078 with open(pathname, "r") as mfile:
1545 pathname=None):
1553 'cache_root' is the pathname of the directory where the manifest
1563 'pathname' is an optional string containing the pathname of a
1567 'contents' will be stored in 'pathname' if it does not already
1573 self.__pathname = pathname
1580 if not os.path.exists(self.pathname):
1614 self.set_content(excludes=self.excludes, pathname=self.pathname)
1635 self.store(self.pathname)
1980 def pathname(self):
1981 """The absolute pathname of the file containing the manifest."""