Tin Tvrtković
Tin Tvrtković
What's our policy on raising exceptions in destructors? For example, this code: https://github.com/python/asyncio/blob/ab113e4f5c437c3a85abfb4be6cf6c22f6f68b9e/asyncio/base_subprocess.py#L131 can potentially throw if the event loop as been closed already (or for any unforeseen reason, really)....
Tin/copy
## Checklist - Python version: 3.8 - Using hiredis or just Python parser: hiredis - Using uvloop or just asyncio event loop: uvloop - Does issue exists against the `master`...
Hello! I've come up against this while working on an asyncio job library. Maybe it's best if I paste a code example. ```python from wrapt import decorator @decorator async def...
## Environment data - Language Server version: 2022.9.20 (pyright 95c059fa) - OS and version: macOS Monterey - Python version (& distribution if applicable, e.g. Anaconda): 3.10.5 ## Repro Steps I've...
This is an attempt to fix the attrs magic attribute handling. The attrs magic attribute functionality was added by me a few months ago, but inexpertly. Since we're starting to...
**Crash Report** Mypy crashes when run over a match statement. **Traceback** ``` a05.py:10: error: INTERNAL ERROR -- Please try using mypy master on GitHub: https://mypy.readthedocs.io/en/stable/common_issues.html#using-a-development-mypy-build Please report a bug at...
Not sure if this is intended or not. I was handling app cleanup in my `App.on_remove` so I was surprised it was being triggered when a child screen gets popped...
Just out of curiosity, would you consider adding asyncio support to be within the scope of this project, or better tackled by a separate project like https://github.com/lisael/aioetcd? Watching keys would...
It'd be useful if PEX environments without a defined entry point supported -m (in the sense of PEP 338). I realize this can already be achieved with PEX_MODULE so it's...