You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our SMTP Server implementation normally calls
asyncio.base_events.Server.is_serving() to test whether the server is
active, but that method only exists in Python 3.6 and up. For Python 3.5
it had to fall back to asyncio.base_events.BaseEventLoop.is_running().
Now that we no longer support Python 3.5, that fallback is no longer
necessary, so I'm removing it.
0 commit comments