-
-
Notifications
You must be signed in to change notification settings - Fork 264
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
asyncore and asynchat may be removed from python 3.11 stdlib #560
Comments
Yep. I'd say we can just copy latest version of both modules into |
Sounds like a good plan :) |
Hi! Totally agree. I've got already deprecation warnings on Python 3.10.2 :
|
https://docs.python.org/3.12/whatsnew/3.12.html#summary-release-highlights asynchat and asyncore have been removed according to the schedule in PEP 594, having been deprecated in Python 3.6. Use asyncio instead. (Contributed by Nikita Sobolev in gh-96580.) |
asyncore and asynchat are now installed as third-party deps from PYPI. |
There's a discussion on the Python dev mailing list about removing
asyncore
andasynchat
from Python 3.11:https://mail.python.org/archives/list/[email protected]/thread/LZOOLX5EKOITW55TW7JQYKLXJUPCAJB4/#LVFBHVNV3INGKVVRONVRIA3Q6JIYXMZM
pyftpdlib
would need to be migrated to asyncio (#310) or ship with a copy ofasyncore
andasynchat
to continue to work if these modules are removed from the stdlib.The text was updated successfully, but these errors were encountered: