(self)
| 49 | l = list = property(get_list) |
| 50 | |
| 51 | def get_spstr(self): |
| 52 | try: |
| 53 | return self.__spstr |
| 54 | except AttributeError: |
| 55 | self.__spstr = self.replace('\n',' ') |
| 56 | return self.__spstr |
| 57 | |
| 58 | s = spstr = property(get_spstr) |
| 59 |
nothing calls this directly
no outgoing calls
no test coverage detected