(self)
| 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 |
nothing calls this directly
no outgoing calls
no test coverage detected