Joseph Perez

Results 50 issues of Joseph Perez

Generic information are lost with classes `__mro__`. But it could be useful to have it, especially for #776 implementation. `typing` module could integrate a `generic_mro` function in order to retrieve...

topic: feature

When it comes to generic classes, type annotations retrieved with `get_type_hints` are not really easy to use, as in the following example: ```python from typing import Generic, TypeVar, get_type_hints T...

topic: feature

Question =========== As mentioned in #885, there is always a producer callback registered, allowing to execute `on_delivery` when provided. I doesn't know Kafka very well, but I've understand that we...

question

In the [specifications](https://json-schema.org/understanding-json-schema/reference/regular_expressions.html) about regex, in the last four lines : ``` {x}: Match exactly x occurrences of the preceding regular expression. {x,y}: Match at least x and at most...

This is not an issue but a question related to pre-commit hook. Typos are not easily noticeable, so when some of them are fixed by the pre-commithook, it's difficult to...

Relates to #1632 Draft based on #3612 This should be the final PR of the async support! :partying_face:

Asyncio is the standard and de facto main Python async runtime. Among non-standard runtime, only trio seems to have substantial traction, especially thanks to the anyio project. There is indeed...

Following #3588, coroutines should issue a warning when they are never awaited, to mimic Python coroutine behavior. However, the best place to put this warning seems to be in `__del__`,...

enhancement