8000 [3.9] bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968) by miss-islington · Pull Request #27970 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.9] bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968) #27970

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

Merged
merged 2 commits into from
Aug 26, 2021
Merged
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
Ignore deprecation warnings from test_events
  • Loading branch information
ambv committed Aug 26, 2021
commit bdb756cd5c09d3bd627f1a32093027720bc27e57
1 change: 1 addition & 0 deletions Lib/test/test_asyncio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def run(self, result, debug=False):
ignore("asyncio.runners", like=r".*loop argument.*"),
ignore("asyncio.subprocess", like=r".*loop argument.*"),
ignore("asyncio.tasks", like=r".*loop argument.*"),
ignore("test.test_asyncio.test_events", like=r".*loop argument.*"),
ignore("test.test_asyncio.test_queues", like=r".*loop argument.*"),
ignore("test.test_asyncio.test_tasks", like=r".*loop argument.*"),
}
Expand Down
0