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

Method get_paths

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

Source from the content-addressed store, hash-verified

121 n = nlstr = property(get_nlstr)
122
123 def get_paths(self):
124 try:
125 return self.__paths
126 except AttributeError:
127 self.__paths = [Path(p) for p in self if os.path.exists(p)]
128 return self.__paths
129
130 p = paths = property(get_paths)
131

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected