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 serhiy.storchaka
Recipients BreamoreBoy, Mariatta, barry, brett.cannon, dstufft, eric.smith, gvanrossum, python-dev, r.david.murray, rhettinger, serhiy.storchaka, vstinner
Date 2016-10-25.18:11:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1477419085.15.0.0890184477221.issue25002@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2016-10-25 18:11:25serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, barry, brett.cannon, rhettinger, vstinner, eric.smith, r.david.murray, BreamoreBoy, python-dev, dstufft, Mariatta
2016-10-25 18:11:25serhiy.storchakasetmessageid: <1477419085.15.0.0890184477221.issue25002@psf.upfronthosting.co.za>
2016-10-25 18:11:25serhiy.storchakalinkissue25002 messages
2016-10-25 18:11:25serhiy.storchakacreate