Message279436
| 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:25 | serhiy.storchaka | set | recipients: + serhiy.storchaka, gvanrossum, barry, brett.cannon, rhettinger, vstinner, eric.smith, r.david.murray, BreamoreBoy, python-dev, dstufft, Mariatta |
| 2016-10-25 18:11:25 | serhiy.storchaka | set | messageid: <1477419085.15.0.0890184477221.issue25002@psf.upfronthosting.co.za> |
| 2016-10-25 18:11:25 | serhiy.storchaka | link | issue25002 messages |
| 2016-10-25 18:11:25 | serhiy.storchaka | create | |