gescheit / fastsnmp

Fast SNMP poller
MIT License
19 stars 7 forks source link

Add support Python 3.11 #18

Closed shadchin closed 1 year ago

shadchin commented 1 year ago

Removed the @asyncio.coroutine() decorator enabling legacy generator-based coroutines to be compatible with async / await code. The function has been deprecated since Python 3.8 and the removal was initially scheduled for Python 3.10. Use async def instead. (Contributed by Illia Volochii in bpo-43216.)