(self)
| 103 | l = list = property(get_list) |
| 104 | |
| 105 | def get_spstr(self): |
| 106 | try: |
| 107 | return self.__spstr |
| 108 | except AttributeError: |
| 109 | self.__spstr = ' '.join(self) |
| 110 | return self.__spstr |
| 111 | |
| 112 | s = spstr = property(get_spstr) |
| 113 |
nothing calls this directly
no outgoing calls
no test coverage detected