(*args, **kwargs)
| 3857 | # Use the test subject instead of asyncio.loop.sendfile |
| 3858 | @staticmethod |
| 3859 | async def async_sendfile(*args, **kwargs): |
| 3860 | return await asyncio.to_thread(os.sendfile, *args, **kwargs) |
| 3861 | |
| 3862 | @staticmethod |
| 3863 | async def sendfile_wrapper(*args, **kwargs): |
no outgoing calls
no test coverage detected