From 138e7bbb0a5ed44bdd54605e8c58c8f3d3865321 Mon Sep 17 00:00:00 2001 From: jacksonriley <52106215+jacksonriley@users.noreply.github.com> Date: Fri, 22 Nov 2019 12:51:58 +0000 Subject: [PATCH] bpo-38866: Remove asyncore from test_pyclbr.py (GH-17316) Co-Authored-By: Kyle Stanley --- Lib/test/test_pyclbr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 4385271cd0f..869799cfa9a 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -247,7 +247,7 @@ def test_dotted_name_not_a_package(self): # not a package. # # Issue #14798. - self.assertRaises(ImportError, pyclbr.readmodule_ex, 'asyncore.foo') + self.assertRaises(ImportError, pyclbr.readmodule_ex, 'asyncio.foo') def test_module_has_no_spec(self): module_name = "doesnotexist"