Auguste Lalande

Results 16 issues of Auguste Lalande

Proposal to address the deadlock issue when calling `client.call` from within another callback. I realise people may have different points of view on whether `client.call` should exist, and whether this...

## Summary Add new flake8 plugin, [flake8-class-newline](https://github.com/AlexanderVanEck/flake8-class-newline) which enforces a single blank line between a class definition and its first method. ## Test Plan Test cases have been added.

## Summary Implement `write-whole-file` (`FURB103`), part of #1348. This is largely a copy and paste of `read-whole-file` #7682. ## Test Plan Text fixture added.

This addresses the race conditions described in #878, by implementing essentially the same solution as #871. Additionally, I also implement #838 which was implemented in the regular client but not...

## Summary This PR re-introduces the control-flow graph implementation which was first introduced in #5384, and then removed in #9463 due to not being feature complete. Mainly, it lacked the...

## Summary Stabilizes `E721` behavior implemented in #7905. The functionality change in `E721` was implemented in #7905, released in [v0.1.2](https://github.com/astral-sh/ruff/releases/tag/v0.1.2). And seems functionally stable since #9676, without an explicit release...

## Summary Following the discussion in #8557, and since no more work has been done since then, I thought I would take a stab at `E122`. Part of #2402. ##...

## Summary Re-code flake8-trio and flake8-async rules to match upstream. Resolves #10303. ## Test Plan

## Summary These are the first rules implemented as part of #458, but I plan to implement more. Specifically, this implements `docstring-missing-exception` which checks for raised exceptions not documented in...

rule
docstring

This presumably applies to any test function with an unused argument, which is not actually a test fixture. But I'm specifically in the situation bellow. ```python from unittest.mock import Mock,...

bug