-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New python 3 asyncio backend #70
base: master
Are you sure you want to change the base?
Conversation
…-wsgi module. aiohttp-wsgi module need accept a pull request sent to accept some new features to be compatible with chaussete
…-wsgi module. aiohttp-wsgi module need accept a pull request sent to accept some new features to be compatible with chaussete
from chaussette.backend import _asyncio3k | ||
_backends['asyncio3k'] = _asyncio3k.Server | ||
except ImportError as e: | ||
print(e) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove this print statement
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace it with pass
as above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oks!
The 2 changesets in this PR must be folded. |
removed print statement
Removed dict as a parameter.
Looks nice, but could you please:
Humm I guess that should be enough ;-) Thanks! David |
This would be a great addition to the backend list! |
and when? |
An intent to add a backend based on asyncio python 3 frameworks, through aiohttp-wsgi module.