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

Method get_list

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

Source from the content-addressed store, hash-verified

40 typically only understands whitespace-separated options for commands."""
41
42 def get_list(self):
43 try:
44 return self.__list
45 except AttributeError:
46 self.__list = self.split('\n')
47 return self.__list
48
49 l = list = property(get_list)
50

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected