(self)
| 112 | s = spstr = property(get_spstr) |
| 113 | |
| 114 | def get_nlstr(self): |
| 115 | try: |
| 116 | return self.__nlstr |
| 117 | except AttributeError: |
| 118 | self.__nlstr = '\n'.join(self) |
| 119 | return self.__nlstr |
| 120 | |
| 121 | n = nlstr = property(get_nlstr) |
| 122 |
nothing calls this directly
no outgoing calls
no test coverage detected