[issue42726] gdb/libpython.py InstanceProxy does not work with py3

2020-12-24 Thread miss-islington
miss-islington added the comment: New changeset 3bb85672bb894403a787a9c5afc0ca5987d28fe0 by Miss Islington (bot) in branch '3.9': closes bpo-42726: gdb libpython: InstanceProxy support for py3 (GH-23912) https://github.com/python/cpython/commit/3bb85672bb894403a787a9c5afc0ca5987d28fe0

[issue42726] gdb/libpython.py InstanceProxy does not work with py3

2020-12-24 Thread miss-islington
miss-islington added the comment: New changeset efd64c8ea0fed1c13839cec0feea450820da34f8 by Miss Islington (bot) in branch '3.8': closes bpo-42726: gdb libpython: InstanceProxy support for py3 (GH-23912) https://github.com/python/cpython/commit/efd64c8ea0fed1c13839cec0feea450820da34f8

[issue42726] gdb/libpython.py InstanceProxy does not work with py3

2020-12-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +22776 pull_request: https://github.com/python/cpython/pull/23925 ___ Python tracker ___

[issue42726] gdb/libpython.py InstanceProxy does not work with py3

2020-12-24 Thread miss-islington
Change by miss-islington : -- pull_requests: +22775 pull_request: https://github.com/python/cpython/pull/23924 ___ Python tracker ___

[issue42726] gdb/libpython.py InstanceProxy does not work with py3

2020-12-24 Thread miss-islington
miss-islington added the comment: New changeset b57ada98da0d5b0cf1ebc2c9c5502d04aa962042 by Augusto Hack in branch 'master': closes bpo-42726: gdb libpython: InstanceProxy support for py3 (GH-23912) https://github.com/python/cpython/commit/b57ada98da0d5b0cf1ebc2c9c5502d04aa962042

[issue42726] gdb/libpython.py InstanceProxy does not work with py3

2020-12-23 Thread Augusto Hack
New submission from Augusto Hack : Calling `proxyval` on an instance of a user defined class fails. minimally reproducible example: ``` from time import sleep class A: def __init__(self): self.a = 1 a = A() sleep(10) ``` Attach to process and run: ``` py-up python-interactive