[issue44872] FrameObject uses the old trashcan macros

2021-08-10 Thread Łukasz Langa
Łukasz Langa added the comment: Thanks, Irit! ✨ 🍰 ✨ -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue44872] FrameObject uses the old trashcan macros

2021-08-10 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset e9ec71ad2c7a1c83f03e172ba7c9f534912b8ba6 by Irit Katriel in branch '3.10': bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27690) https://github.com/python/cpython/commit/e9ec71ad2c7a1c83f03e172ba7c9f534912b8ba6 --

[issue44872] FrameObject uses the old trashcan macros

2021-08-10 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset ede1dc416de5eece02170e03387dc8496c2d00ae by Irit Katriel in branch '3.9': bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27691) https://github.com/python/cpython/commit/ede1dc416de5eece02170e03387dc8496c2d00ae -- _

[issue44872] FrameObject uses the old trashcan macros

2021-08-10 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset b019ffed5debb13358a946a8e2d20594c7c181f3 by Irit Katriel in branch '3.8': bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27692) https://github.com/python/cpython/commit/b019ffed5debb13358a946a8e2d20594c7c181f3 -- _

[issue44872] FrameObject uses the old trashcan macros

2021-08-09 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +26178 pull_request: https://github.com/python/cpython/pull/27692 ___ Python tracker ___

[issue44872] FrameObject uses the old trashcan macros

2021-08-09 Thread Irit Katriel
Change by Irit Katriel : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue44872] FrameObject uses the old trashcan macros

2021-08-09 Thread Irit Katriel
Change by Irit Katriel : -- versions: +Python 3.8 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue44872] FrameObject uses the old trashcan macros

2021-08-09 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +26177 pull_request: https://github.com/python/cpython/pull/27691 ___ Python tracker ___

[issue44872] FrameObject uses the old trashcan macros

2021-08-09 Thread Irit Katriel
Change by Irit Katriel : -- pull_requests: +26176 pull_request: https://github.com/python/cpython/pull/27690 ___ Python tracker ___

[issue44872] FrameObject uses the old trashcan macros

2021-08-09 Thread Irit Katriel
Irit Katriel added the comment: New changeset 7d14fdb03c3e8384c01da1b21647ce837ed6a29c by Irit Katriel in branch 'main': bpo-44872: use new trashcan macros in framobject.c (#27683) https://github.com/python/cpython/commit/7d14fdb03c3e8384c01da1b21647ce837ed6a29c --

[issue44872] FrameObject uses the old trashcan macros

2021-08-09 Thread Irit Katriel
Change by Irit Katriel : -- keywords: +patch pull_requests: +26169 stage: -> patch review pull_request: https://github.com/python/cpython/pull/27683 ___ Python tracker ___ ___

[issue44872] FrameObject uses the old trashcan macros

2021-08-09 Thread Irit Katriel
New submission from Irit Katriel : Py_TRASHCAN_SAFE_BEGIN/END are the old macros, and they are currently broken (see Issue40608). We should use Py_TRASHCAN_BEGIN/END instead. -- components: Interpreter Core messages: 399274 nosy: iritkatriel priority: normal severity: normal status: op