(self)
| 190 | warning(ctypes.FormatError(ctypes.GetLastError())) |
| 191 | |
| 192 | def fileno(self): |
| 193 | # type: () -> int |
| 194 | if WINDOWS: |
| 195 | return self._fd |
| 196 | return self.__rd |
| 197 | |
| 198 | def send(self, obj): |
| 199 | # type: (_T) -> int |
no outgoing calls
no test coverage detected