(self)
| 134 | |
| 135 | # This is needed by the test suite --timeout option, which uses faulthandler. |
| 136 | def fileno(self): |
| 137 | if self._fileno is None: |
| 138 | raise io.UnsupportedOperation("fileno") |
| 139 | return self._fileno |
| 140 | |
| 141 | |
| 142 | # When a large volume of data is written to logcat at once, e.g. when a test |