10000 bpo-42611: PEP 594 - Remove asyncore, asynchat, and smptd from stdlib by aeros · Pull Request #23728 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-42611: PEP 594 - Remove asyncore, asynchat, and smptd from stdlib #23728

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Use concurrent.futures for test_support test_CleanImport
  • Loading branch information
aeros committed Dec 10, 2020
commit 1a2a8235a29be73596e18f8f76fa7c561e0cf90b
4 changes: 2 additions & 2 deletions Lib/test/test_support.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ def test_check_syntax_error(self):

def test_CleanImport(self):
import importlib
with import_helper.CleanImport("asyncio"):
importlib.import_module("asyncio")
with import_helper.CleanImport("concurrent.futures"):
importlib.import_module("concurrent.futures")

def test_DirsOnSysPath(self):
with import_helper.DirsOnSysPath('foo', 'bar'):
Expand Down
0