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.
Created on 2020年03月23日 14:36 by vstinner, last changed 2022年04月11日 14:59 by admin. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 19691 | merged | vstinner, 2020年04月23日 21:52 | |
| PR 19698 | merged | vstinner, 2020年04月24日 00:44 | |
| Messages (6) | |||
|---|---|---|---|
| msg364850 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2020年03月23日 14:36 | |
tstate->frame is a borrowed references to the current frame object. It's set tp the frame at _PyEval_EvalFrameDefault() and resets to frame->f_back at _PyEval_EvalFrameDefault() exit. Problem: when _PyCode_InitOpcache() fails, tstate->frame is not reset to frame->f_back. |
|||
| msg364865 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2020年03月23日 17:24 | |
Note: I found this issue with Pablo Galindo Galgado while investigating bpo-20526. |
|||
| msg365502 - (view) | Author: Pablo Galindo Salgado (pablogsal) * (Python committer) | Date: 2020年04月01日 18:34 | |
Will prepare a pr soon |
|||
| msg367164 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2020年04月24日 00:43 | |
New changeset 25104949a5a60ff86c10691e184ce2ecb500159b by Victor Stinner in branch 'master': bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691) https://github.com/python/cpython/commit/25104949a5a60ff86c10691e184ce2ecb500159b |
|||
| msg367167 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2020年04月24日 01:07 | |
New changeset d9df63deab78f70061a5a24c1f92e6d389fc45f7 by Victor Stinner in branch '3.8': bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691) (GH-19698) https://github.com/python/cpython/commit/d9df63deab78f70061a5a24c1f92e6d389fc45f7 |
|||
| msg367168 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2020年04月24日 01:07 | |
Thanks for the review Pablo ;-) |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:59:28 | admin | set | github: 84229 |
| 2020年04月24日 01:07:43 | vstinner | set | status: open -> closed resolution: fixed messages: + msg367168 stage: patch review -> resolved |
| 2020年04月24日 01:07:27 | vstinner | set | messages: + msg367167 |
| 2020年04月24日 00:44:33 | vstinner | set | pull_requests: + pull_request19018 |
| 2020年04月24日 00:43:22 | vstinner | set | messages: + msg367164 |
| 2020年04月23日 21:52:10 | vstinner | set | keywords:
+ patch stage: patch review pull_requests: + pull_request19011 |
| 2020年04月01日 18:34:22 | pablogsal | set | messages: + msg365502 |
| 2020年04月01日 17:34:26 | corona10 | set | nosy:
+ corona10 |
| 2020年03月23日 17:24:30 | vstinner | set | nosy:
+ methane, pablogsal messages: + msg364865 |
| 2020年03月23日 14:36:53 | vstinner | create | |