Closes the underlying file, no matter what.
(self)
| 177 | return rv |
| 178 | |
| 179 | def close(self) -> None: |
| 180 | """Closes the underlying file, no matter what.""" |
| 181 | if self._f is not None: |
| 182 | self._f.close() |
| 183 | |
| 184 | def close_intelligently(self) -> None: |
| 185 | """This function only closes the file if it was opened by the lazy |
no outgoing calls
no test coverage detected