MCPcopy Create free account
hub / github.com/ipython/ipython / get_paths

Method get_paths

IPython/utils/text.py:65–70  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

63 n = nlstr = property(get_nlstr)
64
65 def get_paths(self):
66 try:
67 return self.__paths
68 except AttributeError:
69 self.__paths = [Path(p) for p in self.split('\n') if os.path.exists(p)]
70 return self.__paths
71
72 p = paths = property(get_paths)
73

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected