[issue36842] Implement PEP 578

2020-04-14 Thread STINNER Victor
STINNER Victor added the comment: New changeset b894b669c98cc365b84cbb8d20f531f1d0686f59 by Victor Stinner in branch '3.7': Update libregrtest from master (GH-19517) https://github.com/python/cpython/commit/b894b669c98cc365b84cbb8d20f531f1d0686f59 -- nosy: +vstinner ___

[issue36842] Implement PEP 578

2019-06-10 Thread miss-islington
miss-islington added the comment: New changeset bac6e63fd63960a1ab862befab42de05d32667c2 by Miss Islington (bot) in branch '3.8': bpo-37215: Fix dtrace issue introduce by bpo-36842 (GH-13940) https://github.com/python/cpython/commit/bac6e63fd63960a1ab862befab42de05d32667c2 -- _

[issue36842] Implement PEP 578

2019-06-10 Thread miss-islington
Change by miss-islington : -- pull_requests: +13810 pull_request: https://github.com/python/cpython/pull/13942 ___ Python tracker ___ __

[issue36842] Implement PEP 578

2019-06-10 Thread miss-islington
miss-islington added the comment: New changeset 8a8b59c9794674b50b2242698c29038034f4864c by Miss Islington (bot) (Christian Heimes) in branch 'master': bpo-37215: Fix dtrace issue introduce by bpo-36842 (GH-13940) https://github.com/python/cpython/commit/8a8b59c9794674b50b2242698c29038034f486

[issue36842] Implement PEP 578

2019-06-10 Thread STINNER Victor
Change by STINNER Victor : -- nosy: -vstinner ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue36842] Implement PEP 578

2019-06-10 Thread Christian Heimes
Change by Christian Heimes : -- pull_requests: +13808 pull_request: https://github.com/python/cpython/pull/13940 ___ Python tracker ___

[issue36842] Implement PEP 578

2019-06-01 Thread Pablo Galindo Salgado
Pablo Galindo Salgado added the comment: New changeset 3b57f50efc16c65df96914ec53bc8d3dc28e18b6 by Pablo Galindo in branch 'master': bpo-36842: Pass positional only parameters to code_new audit hook (GH-13707) https://github.com/python/cpython/commit/3b57f50efc16c65df96914ec53bc8d3dc28e18b6

[issue36842] Implement PEP 578

2019-05-31 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- pull_requests: +13594 pull_request: https://github.com/python/cpython/pull/13707 ___ Python tracker ___ ___

[issue36842] Implement PEP 578

2019-05-29 Thread Steve Dower
Change by Steve Dower : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ P

[issue36842] Implement PEP 578

2019-05-29 Thread Steve Dower
Steve Dower added the comment: New changeset 9ddc416e9f6635376312c3615193f19480ac772a by Steve Dower in branch 'master': bpo-36842: Fix reference leak in tests by running out-of-proc (GH-13556) https://github.com/python/cpython/commit/9ddc416e9f6635376312c3615193f19480ac772a -- ___

[issue36842] Implement PEP 578

2019-05-24 Thread Steve Dower

[issue36842] Implement PEP 578

2019-05-24 Thread Steve Dower
Steve Dower added the comment: Since hooks can't be removed, it probably looks like a leak when some are added for the tests. I'll update all the tests to run in new processes. -- ___ Python tracker __

[issue36842] Implement PEP 578

2019-05-24 Thread STINNER Victor
STINNER Victor added the comment: It seems like there are reference leaks: https://buildbot.python.org/all/#/builders/1/builds/593 test_audit leaked [310, 310, 310] references, sum=930 test_audit leaked [189, 189, 189] memory blocks, sum=567 You may try test.bisect_cmd to debug this. --

[issue36842] Implement PEP 578

2019-05-23 Thread STINNER Victor
STINNER Victor added the comment: I created bpo-37023 to track the test_gdb failure: "test_gdb failed on AMD64 Debian PGO 3.x". -- nosy: +vstinner ___ Python tracker ___

[issue36842] Implement PEP 578

2019-05-23 Thread Steve Dower
Steve Dower added the comment: test_gdb failed on the Debian PGO buildbot https://buildbot.python.org/all/#builders/47/builds/2854 I'm going to do what I can to investigate, but I may be out of my depth here! -- stage: patch review -> commit review __

[issue36842] Implement PEP 578

2019-05-23 Thread Steve Dower
Steve Dower added the comment: New changeset b82e17e626f7b1cd98aada0b1ebb65cb9f8fb184 by Steve Dower in branch 'master': bpo-36842: Implement PEP 578 (GH-12613) https://github.com/python/cpython/commit/b82e17e626f7b1cd98aada0b1ebb65cb9f8fb184 --

[issue36842] Implement PEP 578

2019-05-07 Thread Steve Dower
New submission from Steve Dower : Implement PEP 578 -- assignee: steve.dower messages: 341819 nosy: christian.heimes, steve.dower priority: normal pull_requests: 13091 severity: normal stage: patch review status: open title: Implement PEP 578 type: enhancement versions: Python 3.8, Pyth