diff options
Diffstat (limited to 'Lib/test/test_poplib.py')
-rw-r--r-- | Lib/test/test_poplib.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Lib/test/test_poplib.py b/Lib/test/test_poplib.py index 44cf5231f9d..23c6be3a801 100644 --- a/Lib/test/test_poplib.py +++ b/Lib/test/test_poplib.py @@ -12,16 +12,12 @@ import threading import unittest from unittest import TestCase, skipUnless from test import support as test_support +from test.support import _asynchat as asynchat +from test.support import _asyncore as asyncore from test.support import hashlib_helper from test.support import socket_helper from test.support import threading_helper -import warnings -with warnings.catch_warnings(): - warnings.simplefilter('ignore', DeprecationWarning) - import asynchat - import asyncore - HOST = socket_helper.HOST PORT = 0 |