Tinche / aiofiles

File support for asyncio
Apache License 2.0
2.67k stars 149 forks source link

Fix DeprecationWarning removing coro decorator #75

Closed HacKanCuBa closed 4 years ago

HacKanCuBa commented 4 years ago

This commit fixes DeprecationWarning in os.py by replacing deprecated decorator (in Python 3.8+) @asyncio.coroutine with async def.

Closes #74 .

Tinche commented 4 years ago

Tests seem to be failing, mind taking a look? Thanks!

HacKanCuBa commented 4 years ago

Tests seem to be failing, mind taking a look? Thanks!

Yes, I wrote everything in the issue #74

HacKanCuBa commented 4 years ago

Fixed by #54.