Adding compatibility with WSGI apps
WSGI applications developed with Python web frameworks (like Django or Tornado) create threads under the main process for handling user requests and Async IO is unable to generate an event loop for those threads if it is not yet created. We are now doing this on our end for adding compatibility with WSGI apps struggling with this problem.