John T. Wodder II

Results 282 issues of John T. Wodder II

**Bug Report** I recently converted [this project](https://github.com/con/tinuous/tree/97538692451f968607a2c289e0ad80fb9d2e1e32) (linked to at the most recent commit) from a plain script to a Python package. This included adding an un-annotated `_version.py` file generated...

bug
topic-configuration

Attempting to use colorlog 6.8.2 under Python 3.13.0 like so: ```python import logging import sys import colorlog colorlog.basicConfig( format="%(log_color)s[%(levelname)-8s] %(message)s", log_colors={ "DEBUG": "cyan", "INFO": "bold", "WARNING": "yellow", "ERROR": "red", "CRITICAL":...

The following code: ```rust use ratatui::{ crossterm::event::{self, Event, KeyEvent}, layout::Rect, widgets::Paragraph, DefaultTerminal, }; fn main() -> std::io::Result { let terminal = ratatui::init(); let r = run(terminal); ratatui::restore(); r } fn...

Type: Bug

When using GitHub Actions, is there a way to configure `cargo-dist` to run in something similar to `pr-run-mode = "upload"` (where artifacts are uploaded to a workflow run but not...

Specifically, give it `get_ref()`, `get_mut()`, `into_inner()`, and `get_pin_mut()` methods. Problem: `JsonLinesStream` wraps [`tokio::io::Lines`][lines], which does not have a `get_pin_mut()` method to delegate to and whose `into_inner()` method loses data. [lines]:...

enhancement
under consideration

Specifically, give it `get_ref()`, `get_mut()`, `into_inner()`, and `get_pin_mut()` methods. Problem: An `into_inner()` method would lose data.

enhancement
under consideration

PR #48 added a `--features` option for enabling features when determining a package's dependencies. However, the default features are always on, which may not always be what you want (e.g.,...

enhancement

Consider the following code: ```python from dataclasses import dataclass @dataclass class Foo: value: int modified: bool = False def update(self) -> None: self.value += 1 self.modified = True foo =...

bug
topic-reachability
topic-type-narrowing