(self)
| 487 | return self._sendfile_use_send(file, offset, count) |
| 488 | |
| 489 | def _decref_socketios(self): |
| 490 | if self._io_refs > 0: |
| 491 | self._io_refs -= 1 |
| 492 | if self._closed: |
| 493 | self.close() |
| 494 | |
| 495 | def _real_close(self, _ss=_socket.socket): |
| 496 | # This function should not reference any globals. See issue #808164. |