🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко)
🇺🇦 Sviatoslav Sydorenko (Святослав Сидоренко)
I noticed this once Cheroot strict docs builds started failing. Basically, our site uses ```rst :py:class:`SSL.Context ` ``` and it now fails to resolve. Here are all the objects currently...
This is my attempt to trigger `WANT_READ` during `sendall()` but it is incomplete at the moment. Any hints on how to make the reproducer more stable are welcome.
This change introduces retries in `OpenSSL.SSL.Connection.sendall()` when `WANT_WRITE_ERROR` or `WANT_READ_ERROR` happen. It relies on `SSL_MODE_ENABLE_PARTIAL_WRITE` being set on the context, that changes the mode of `SSL_write()` to return errors only...
# Bug report This code ```python import pathlib path = pathlib.Path('.') path.chmod(0o700) ``` causes ```console WPS432: Found magic number: 448 ``` It's unobvious that it's the same number and it's...
# Bug report ## What's wrong When having compat shims, this happens: ```python # _compat.py: try: from subprocess import CompletedProcess # noqa: S404, WPS433 except ImportError: class CompletedProcess: ... ```...
### What's wrong While integrating WPS into yet another project, I've hit a case where it caused flake8 to run for over 11 minutes on a relatively performant laptop. Having...
It's got my attention that sometimes problems with transitive dependencies may reflect poorly on this action's ability to fulfil its purpose. Here's what's happened in the past: - https://github.com/pypa/gh-action-pypi-publish/issues/100 -...
Example image build+publish workflow: https://github.com/ansible/pylibssh/blob/devel/.github/workflows/build-manylinux-container-images.yml Example of an action pointer: https://github.com/fedora-python/tox-github-action/blob/9f7d1ff/action.yaml#L14
There's been some confusion with the tutorial so I'm documenting a few things that I'd like to improve (not sure if they belong to the tutorial or to separate guides):...