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: Fix Task.__repr__ crash when trying to format Cython's bogus coroutines
Type: behavior Stage: resolved
Components: asyncio Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, lukasz.langa, ned.deily, yselivanov
Priority: release blocker Keywords: patch

Created on 2018-05-28 16:29 by yselivanov, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 7161 merged yselivanov, 2018-05-28 16:30
PR 7173 merged miss-islington, 2018-05-28 20:29
PR 7180 merged yselivanov, 2018-05-28 21:47
Messages (7)
msg317915 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-05-28 20:27
New changeset 989b9e0e6d7dd2fa911f9bfd4744e7f3a82d6006 by Yury Selivanov in branch 'master':
bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161)
https://github.com/python/cpython/commit/989b9e0e6d7dd2fa911f9bfd4744e7f3a82d6006
msg317929 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-05-28 21:56
Ned, this one would be nice to have in 3.7.0.
msg317934 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-05-28 22:29
bug fix, go for it.
msg317935 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-05-28 22:31
New changeset 075c662086859f864aa1179f57367aa470ee6335 by Yury Selivanov (Miss Islington (bot)) in branch '3.7':
bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161) (GH-7173)
https://github.com/python/cpython/commit/075c662086859f864aa1179f57367aa470ee6335
msg317982 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-05-29 04:55
New changeset e151f83deab9819fb8d9dfc59f9baa4a7273226c by Yury Selivanov in branch '3.6':
bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7180)
https://github.com/python/cpython/commit/e151f83deab9819fb8d9dfc59f9baa4a7273226c
msg318087 - (view) Author: Ned Deily (ned.deily) * (Python committer) Date: 2018-05-29 20:40
Can we close this now?
msg318088 - (view) Author: Yury Selivanov (yselivanov) * (Python committer) Date: 2018-05-29 20:43
Yes, thanks Ned
History
Date User Action Args
2022-04-11 14:59:00adminsetnosy: + lukasz.langa
github: 77853
2018-05-29 20:43:29yselivanovsetstatus: open -> closed
resolution: fixed
messages: + msg318088

stage: patch review -> resolved
2018-05-29 20:40:27ned.deilysetmessages: + msg318087
2018-05-29 04:55:29yselivanovsetmessages: + msg317982
2018-05-28 22:31:10yselivanovsetmessages: + msg317935
2018-05-28 22:29:44ned.deilysetmessages: + msg317934
2018-05-28 21:56:19yselivanovsetpriority: normal -> release blocker
nosy: + ned.deily
messages: + msg317929

2018-05-28 21:47:06yselivanovsetpull_requests: + pull_request6815
2018-05-28 20:29:57miss-islingtonsetpull_requests: + pull_request6808
2018-05-28 20:27:36yselivanovsetmessages: + msg317915
2018-05-28 16:30:44yselivanovsetkeywords: + patch
stage: patch review
pull_requests: + pull_request6796
2018-05-28 16:29:15yselivanovcreate