Redoubts

Results 15 issues of Redoubts

### Steps to reproduce script: ```python import os # pylint: disable=unused-import from sys import exit print("Hi") ``` If you run plain `pylint` on this, you get "W0611: Unused import os...

Bug :beetle:
topic-configuration
topic-command-line
C: Pragma's
Needs PR

Routed here from https://github.com/microsoft/vscode-cpptools/issues/5331 Checklist - [x] This problem exists even with the setting `"C_Cpp.enhancedColorization": "Disabled"` - [x] This bug exists for C - [x] This bug exists for C++...

**Bug Report** New to 0.971 (vs .961), when you have an attrs class with a normal attr, and then another with a converter function, your class gets marked with `...

bug
topic-attrs

Can I convince you to use `six` instead of `python-future` for py2/py3 compatibility? `six` seems to be the most popular solution to this, with equivalent names for your usage, and...

The following proto file won't compile with pyrobuf: ``` syntax = "proto2"; package test; message Item { optional double from = 1; } ``` due to this error: ``` Error...

Can the version pin for `ruamel.yaml` be relaxed? The issue linked in the requirements file is closed.

dependencies

Hello! I came across your project from the EV3dev page, like most people I assume. I took a look at some of the suggestions others made, and incorporated theirs with...

As noted in https://github.com/pytest-dev/pytest/pull/12248, some modules can raise warnings at import time. If this happens during `AssertionRewritingHook`'s actions, then they get raised early and cannot be controlled by the pytest...

type: proposal
plugin: warnings

Suppose you have a test that may fail with a very large diff; say: ```python def test_xyz() -> None: assert ["x"] * 10_000 == ["x\n"] * 10_000 ``` With normal...

type: performance
plugin: junitxml

### Bug description Consider the following code: ```python from __future__ import annotations from typing import TYPE_CHECKING if TYPE_CHECKING: import datetime class Z: def something(self) -> None: z = datetime.datetime.now() #...

typing
False Negative 🦋
C: used-before-assignment