This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Replace direct future and task contructor calls with factories in asyncio tests
Type: Stage: resolved
Components: asyncio Versions: Python 3.9, Python 3.8
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, miss-islington, yselivanov
Priority: normal Keywords: patch

Created on 2019-09-11 12:16 by asvetlov, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 15928 merged asvetlov, 2019-09-11 12:17
PR 15937 merged miss-islington, 2019-09-11 13:07
Messages (3)
msg351837 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2019-09-11 12:16
1. Factories are recommended way for a task and a future creation.
2. Consider this task as asyncio tests tidy up.
msg351853 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2019-09-11 13:07
New changeset 9aee90018a5213e3529768e0b873955d23f5e50b by Andrew Svetlov in branch 'master':
bpo-38107: Replace direct future and task contructor calls with factories in asyncio tests (GH-15928)
https://github.com/python/cpython/commit/9aee90018a5213e3529768e0b873955d23f5e50b
msg351898 - (view) Author: miss-islington (miss-islington) Date: 2019-09-11 14:21
New changeset b18b19809d24182e9837b27b1c0af65458dff3ba by Miss Islington (bot) in branch '3.8':
bpo-38107: Replace direct future and task contructor calls with factories in asyncio tests (GH-15928)
https://github.com/python/cpython/commit/b18b19809d24182e9837b27b1c0af65458dff3ba
History
Date User Action Args
2022-04-11 14:59:20adminsetgithub: 82288
2019-09-13 05:50:50asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-09-11 14:21:56miss-islingtonsetnosy: + miss-islington
messages: + msg351898
2019-09-11 13:07:48miss-islingtonsetpull_requests: + pull_request15573
2019-09-11 13:07:39asvetlovsetmessages: + msg351853
2019-09-11 12:23:34asvetlovsetkeywords: + patch
2019-09-11 12:23:14asvetlovsetkeywords: - patch, 3.3regression
2019-09-11 12:17:19asvetlovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request15568
2019-09-11 12:16:03asvetlovcreate