Ran Benita
Ran Benita
Python 3.14 added a new module [`concurrent.interpreters`](https://docs.python.org/3.14/library/concurrent.interpreters.html) which allows creating isolated sub-interpreters with their own GIL. I like the concept and experimented it with it a bit in pytest-xdist/execnet, trying...
Now that 9.0 is out, we should remove the pytest 9 removed features. According to our deprecation policy, 9.0 only turns the deprecation warnings to errors by default, but doesn't...
In #13804 I set the `__module__` on some exception/enum types since it shows up in tracebacks. We also already set it on warning types. I wonder if we should have...
### Describe the bug Given a file like this: ```rst .. confval: conf1 Description of conf1. .. confval: conf2 .. default: Fallback to :confval:`conf1` Description of conf2. ``` I get...