Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(14) | Call(14) | Derive(0) | Import(0)
src/p/l/plumbum-1.4.1/plumbum/machines/env.py plumbum(Download)
def append(self, path): list.append(self, self._path_factory(path)) def extend(self, paths): list.extend(self, (self._path_factory(p) for p in paths)) def insert(self, index, path): list.insert(self, index, self._path_factory(path)) def index(self, path): list.index(self, self._path_factory(path)) def __contains__(self, path): return list.__contains__(self, self._path_factory(path))
src/p/l/plumbum-HEAD/plumbum/machines/env.py plumbum(Download)
def append(self, path): list.append(self, self._path_factory(path)) def extend(self, paths): list.extend(self, (self._path_factory(p) for p in paths)) def insert(self, index, path): list.insert(self, index, self._path_factory(path)) def index(self, path): list.index(self, self._path_factory(path)) def __contains__(self, path): return list.__contains__(self, self._path_factory(path))