This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author martin.panter
Recipients Mariatta, barry, brett.cannon, dstufft, eric.smith, gvanrossum, martin.panter, python-dev, r.david.murray, rhettinger, serhiy.storchaka, vstinner
Date 2016-10-26.00:19:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477441166.34.0.239802035756.issue25002@psf.upfronthosting.co.za>
In-reply-to
Content
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:

* test_ssl, test_smtplib, test_poplib, test_logging, test_ftplib, test_support: tests use asyncore
* test_os: test uses asynchat (When you import asynchat, the first error complains about importing asyncore, there are actually two warnings)
* test_all: This seems to ignore DeprecationWarning; perhaps an exception for PendingDeprecationWarning should also be added?
* test_asyncore and test_asynchat: Obviously these have to still test the modules, so they should anticipate the warnings, perhaps using Serhiy’s code
* test_smtpd: smtpd module itself uses asyncore; see Issue 25008
History
Date User Action Args
2016-10-26 00:19:26martin.pantersetrecipients: + martin.panter, gvanrossum, barry, brett.cannon, rhettinger, vstinner, eric.smith, r.david.murray, python-dev, serhiy.storchaka, dstufft, Mariatta
2016-10-26 00:19:26martin.pantersetmessageid: <1477441166.34.0.239802035756.issue25002@psf.upfronthosting.co.za>
2016-10-26 00:19:26martin.panterlinkissue25002 messages
2016-10-26 00:19:25martin.pantercreate