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
New submission from Augusto Hack :
Currently it seems that `pdb` does not support executing `async` functions.
This makes debugging `async` code a bit harder if one needs to call an `async`
function from the REPL.
Here is an example:
```python
import asyncio
async def f() ->
Augusto Hack added the comment:
I have made some changes to expose the InitVar type, they are available here:
https://github.com/hackaugusto/dataclasses/tree/initvar_type
Are these changes sufficient?
--
nosy: +hack.augusto
___
Python tracker
Change by Augusto Hack :
--
keywords: +patch
pull_requests: +8399
stage: -> patch review
___
Python tracker
<https://bugs.python.org/issue33569>
___
___
Py