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: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase
Type: Stage: resolved
Components: asyncio, Tests Versions: Python 3.11, Python 3.10, Python 3.9
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, yselivanov
Priority: normal Keywords: patch

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

Pull Requests
URL Status Linked Edit
PR 30198 merged asvetlov, 2021-12-19 10:17
PR 30202 merged asvetlov, 2021-12-19 14:51
PR 30204 merged asvetlov, 2021-12-19 16:33
PR 30205 merged asvetlov, 2021-12-19 17:46
Messages (4)
msg408888 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2021-12-19 10:16
The change makes tests much better readable.
msg408902 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2021-12-19 14:36
New changeset 9c06fd89514a9a2865e2adcc472095f6949cecb2 by Andrew Svetlov in branch 'main':
bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198)
https://github.com/python/cpython/commit/9c06fd89514a9a2865e2adcc472095f6949cecb2
msg408906 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2021-12-19 15:17
New changeset cdb4579607ad5e0a3978ec29b8407bea4d19b4fa by Andrew Svetlov in branch '3.10':
[3.10] bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198) (GH-30202)
https://github.com/python/cpython/commit/cdb4579607ad5e0a3978ec29b8407bea4d19b4fa
msg408912 - (view) Author: Andrew Svetlov (asvetlov) * (Python committer) Date: 2021-12-19 16:59
New changeset f8fce5e4e4338fbe49e5e7a5a856101f69081a08 by Andrew Svetlov in branch '3.9':
[3.9] bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198) (GH-30204)
https://github.com/python/cpython/commit/f8fce5e4e4338fbe49e5e7a5a856101f69081a08
History
Date User Action Args
2022-04-11 14:59:53adminsetgithub: 90287
2021-12-19 17:46:00asvetlovsetpull_requests: + pull_request28426
2021-12-19 17:08:40asvetlovsetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-12-19 16:59:41asvetlovsetmessages: + msg408912
2021-12-19 16:33:11asvetlovsetpull_requests: + pull_request28425
2021-12-19 15:17:44asvetlovsetmessages: + msg408906
2021-12-19 14:51:42asvetlovsetpull_requests: + pull_request28423
2021-12-19 14:36:06asvetlovsetmessages: + msg408902
2021-12-19 10:21:58asvetlovsetversions: + Python 3.9, Python 3.10
2021-12-19 10:17:46asvetlovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request28419
2021-12-19 10:16:11asvetlovcreate