[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-21 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- resolution: -> fixed stage: needs patch -> resolved status: open -> closed ___ Python tracker ___

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-21 Thread Ned Batchelder
Ned Batchelder added the comment: I can confirm that this fixes the problem. -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-20 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: Mark, os something left to do here? -- nosy: +pablogsal ___ Python tracker ___ ___ Python-

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-19 Thread Mark Shannon
Mark Shannon added the comment: New changeset 337cb480e9dc1d27594ebd87a0045d00ec8b1c3a by Mark Shannon in branch 'main': bpo-45709: Fix tracing when exception is handled. (GH-29638) https://github.com/python/cpython/commit/337cb480e9dc1d27594ebd87a0045d00ec8b1c3a -- ___

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-19 Thread Mark Shannon
Mark Shannon added the comment: Sorry about the delay in fixing this. -- keywords: -patch stage: patch review -> needs patch ___ Python tracker ___ __

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-19 Thread Mark Shannon
Change by Mark Shannon : -- keywords: +patch pull_requests: +27869 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/29638 ___ Python tracker

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-04 Thread Zachary Ware
Change by Zachary Ware : -- keywords: +3.11regression stage: -> needs patch ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-04 Thread Mark Shannon
Mark Shannon added the comment: Probably an oversight when converting to zero-overhead exceptions. -- assignee: -> Mark.Shannon type: -> behavior ___ Python tracker ___

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-04 Thread Ned Batchelder
Ned Batchelder added the comment: BTW, this is the coverage.py issue: https://github.com/nedbat/coveragepy/issues/1270 -- ___ Python tracker ___ _

[issue45709] 3.11 regression: tracing with-statement on exit from block

2021-11-04 Thread Ned Batchelder
New submission from Ned Batchelder : Python 3.11 seems to have reverted a behavior that was new in 3.10.0b1: exiting a with-statement re-visits the with line on the way out. --- %< bug2.py -- import linecache, sys def trace(frame, event, arg): # The weird globals here