Huw Jones
Huw Jones
### Operating System Info macOS 11.4 ### OBS Studio Version 27.1, 27.1.1, 27.1.2, 27.1.3 ### OBS Studio Log URL https://discord.com/channels/348973006581923840/636682784156549152/914590768851726376 ### OBS Studio Crash Log URL https://discord.com/channels/348973006581923840/636682784156549152/914590768851726376 ### Expected Behavior...
Since v3.20.0 generated protobuf files trigger pylint `no-name-in-module` when importing the message types. Compiling `foo.proto` (see below) on two different protobuf versions obviously different results, however the old (3.19.x) can...
Due to the Python 3.8 changing the default event loop to proactor, `start_tls` does not work, therefore you cannot connect to a server using TLS. As per https://github.com/tornadoweb/tornado/issues/2608 and https://github.com/aio-libs/aiohttp/issues/4536,...
### Bug description When decorating a class with a decorator that returns the class wrapped in a dataclass (see MWE below), pylint fails to realise this new class is a...
### Bug description It appears that if: 1. you have two protocols that have abstract methods 2. create a third protocol that inherits from both of them and does not...
**Checklist** - [x] I checked the [FAQ section](https://schemathesis.readthedocs.io/en/stable/faq.html#frequently-asked-questions) of the documentation - [x] I looked for similar issues in the [issue tracker](https://github.com/schemathesis/schemathesis/issues) **Describe the bug** When implementing custom auth, I'm...
### Describe your PR On systems with procfs, collect the count of bytes in/out of the process. ### What type of PR is this? /kind enhancement ### Changelog Entry ```release-note...
[By default systemd `WatchdogSec` "Defaults to 0, which disables this feature."](https://www.freedesktop.org/software/systemd/man/systemd.service.html#WatchdogSec=) When a service is configured with a watchdog, the service should notify systemd that it is still alive by...
I've got a script that's creating a ref (branch) and replacing it if it already exists. ```py branch_ref = "heads/my-ref" with suppress(GithubException): repo.get_git_ref(branch_ref).delete() ref =repo.create_git_ref(branch_ref, commit.sha) ``` By specifying the...