-
-
Notifications
You must be signed in to change notification settings - Fork 31.3k
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
Deprecate asyncore/asynchat #69190
Comments
Now that we've got asyncio in two releases (3.4 and 3.5) we should start deprecating asyncore and asynchat. There isn't much use of these in the stdlib (smtpd.py uses them, and a bunch of tests) and we should probably rewrite those to use asyncio. Maybe smtpd.py can be deprecated itself. |
I'm all for deprecating asyncore/asynchat but should deprecating them wait until asyncio is no longer provisional? |
Yes, in 3.6 asyncio will no longer be provisional and we can start deprecating async{ore,hat}. Which is why I marked this bug with 3.6. |
The documentation of both modules begin with the following note: "This module exists for backwards compatibility only. For new code we recommend using asyncio." What do you mean by deprecating the module? Emit a PendingDeprecationWarning in Python 3.6 and emit a DeprecationWarning in Python 3.7?
Maybe it can be fun to rewrite the module using asyncio, but I'm not convinced that a SMTP server in the Python stdlib is super useful. (A HTTP server *is* very useful, it saved my life multiple times when I worked on embedded devices without any server available to transfer files.) |
Ideally these modules should emit a deprecation warning starting in 3.6 (when asyncio is no longer provisional) and we should strive to delete them per 3.8. If nobody rewrites smptd.py using asyncio it should be deleted at the same time. |
I use smtpd.py for testing my code. But it's not such a big deal that I couldn't live without it. If I have some time to burn, I might convert it to asyncio so I can continue to use it. |
smtpd is used for testing smtplib. It is also used in test_logging. I would object to having it removed, but I suspect we can manage to rewrite it by 3.8. Maybe Eric and I can collaborate on it. |
I opened http://bugs.python.org/issue25008 to discuss deprecating smtpd since this issue is about asyncore/asynchat. |
On Sep 04, 2015, at 08:55 PM, STINNER Victor wrote:
As I mentioned in bpo-25008, removing smtpd would be a hardship for myself, |
If we care about making it easier for organizations to move from Python 2 to Python 3, we should develop a strong aversion to deprecating modules that have been around for a long time and aren't broken. In addition, we should give weight and support to the numerous projects that are trying to have a code base the runs in both Python 2 and Python 3 (hence the astonishing success of the six module). Already my tooling for testing Python 3.6 is broken because some core dev aggressively removed functions from the inspect module that were deprecated in favor of using Signature objects. That broke the popular Hypothesis testing tool which was carefully written to work for both Python 2 and Python 3. In order to work again that tool will have to be modified to copy in the old code that was just taken out. don't-leave-your-users-behind-ly yours ... |
Then can we at least close any feature requests for asyncore/asynchat as wontfix? (And porting smtpd.py to asyncio is still a good idea.) |
Yes, stopping changing asyncore/asynchat also means it becomes a stable target for people who *are* using it for 2/3 code. We may have effectively done this already (without closing the open issues): the last asyncore-specific change (as opposed to library-wide changes that also hit asyncore) was a ResourceWarning added by Victor in June of 2014. Likewise for asynchat. |
If you care of smooth python 2 => python 3 migration, I suggest to I suggest to write a *new* SMTP server module using asyncio. As I |
Victor's suggestion also aligns with my thinking on the subject as well: deprecate the modules but simply leave them sitting there for compatibility reasons until Python 4 of whenever we feel like the Python 2 transition is done for those that will ever bother making the switch. That way people's expectations are in the proper alignment of where things will end up and code won't break if it straddles Python 2 & 3 short of having to silence a deprecation warning. I think this is a good use of PendingDeprecationWarning and the message both in the deprecation and the docs can make it clear that the removal date is not planned but you should avoid using the module in new code. |
Is it ok to add the PendingDeprecationWarning in Python 3.5.1? |
I prefer to wait until 3.6. A bugfix release should not rock the boat, it should not make your code emit new warnings. |
In addition to a PendingDeprecationWarning in 3.6, it might be nice to put a note in the asyncore/asynchat docs like we did for optparse. |
IIRC I flagged up oustanding asyncore/asynchat issues months or even years back and Victor closed a lot down, so there shouldn't be many left to deal with. |
Hi, Attached is the patch that adds pending deprecation warnings to asyncore and asynchat. Please review. Thanks :) |
Applied: remote: notified python-checkins@python.org of incoming changeset bb23770f82f1 |
New changeset bb23770f82f1 by Guido van Rossum in branch '3.6': New changeset 3b8dfe6f5bcb by Guido van Rossum in branch 'default': |
This change broke buildbots. $ ./python -We -m test.regrtest test_os
Run tests sequentially
0:00:00 [1/1] test_os
test test_os crashed -- Traceback (most recent call last):
File "/home/serhiy/py/cpython/Lib/test/libregrtest/runtest.py", line 151, in runtest_inner
the_module = importlib.import_module(abstest)
File "/home/serhiy/py/cpython/Lib/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "<frozen importlib._bootstrap>", line 978, in _gcd_import
File "<frozen importlib._bootstrap>", line 961, in _find_and_load
File "<frozen importlib._bootstrap>", line 950, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 655, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 677, in exec_module
File "<frozen importlib._bootstrap>", line 205, in _call_with_frames_removed
File "/home/serhiy/py/cpython/Lib/test/test_os.py", line 5, in <module>
import asynchat
File "/home/serhiy/py/cpython/Lib/asynchat.py", line 48, in <module>
import asyncore
File "/home/serhiy/py/cpython/Lib/asyncore.py", line 65, in <module>
PendingDeprecationWarning, stacklevel=2)
PendingDeprecationWarning: asyncore module is deprecated in 3.6. Use asyncio instead. test_os failed 1 test failed: Total duration: 59 ms |
Sorry about that. Should I roll it back or is there a way to make the test pass (expect this deprecation)? |
I think replacing import asynchat
import asyncore with with warnings.catch_warnings():
warnings.simplefilter('ignore', PendingDeprecationWarning)
import asynchat
import asyncore can help. asynchat and asyncore are used in several tests. In long term asynchat and asyncore should be replaced with alternatives. |
Sorry about this Serhiy. I can work on another patch based on your code snippet later today. Should I create a different ticket about replacing asyncore and asynchat? |
This may require several tickets, one per case. |
Ah, asyncore/asynchat are used in smtpd! It looks to me that we should first write asyncio alternative to smtpd, then deprecate smtpd, and only after this we can deprecate asyncore/asynchat. |
Thanks Serhiy, I created these two tickets: |
The alternative has already been written: aiosmtpd, in the aiolibs project. The question is should it be added to the stdlib... |
Serhiy, so should I revert this patch for now? Or are the silent |
R. David Murray added the comment:
I suggest to keep it on PyPI to keep fast releases. |
Perhaps it is okay to keep the documentation changes, but I think either the library changes should be reverted or worked around where the modules are still in use. I normally run the tests with -Werror, and the failures I get are:
|
New changeset 6eb3312a9a16 by Guido van Rossum in branch '3.6': New changeset 2879185bc511 by Guido van Rossum in branch 'default': |
OK, backed out the code changes, kept the docs. |
I suggest to close this issue and instead work on the the issue bpo-28533: modify code using asyncore to use something else. |
Sounds good. |
For the archaeologists of the future, smtpd.py is also deprecated in favor of aiosmtpd. |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: