Leonard Crestez

Results 24 issues of Leonard Crestez

By default pytest does not import all modules so it is fine if they have import errors due to optional dependencies. You can cause pytest to import all modules if...

bug

### Description pip --no-input is a documented option to "Disable prompting for input.". However prompts coming from git and ssh are still shown. This is particularly bad for https://github.com/pypa/pipx/issues/1418 because...

type: bug
S: needs triage

The actual implementation of pexpect.SpawnBase does not contain these functions but it is an abstract class and all children have these write methods. Since almost all interesting pexpect code does...

The `Sequence` type only requires a read-only list of `Packet` and is covariant. With `List[Packet]` the following simple code fails on mypy: ``` pl = [Ether() / IP() / UDP()...

**Describe the bug** When SSH authentication is requested for an URL pipx will hang indefinitely with a message like `⣾ determining package name from 'git+ssh://...`. You can work around this...

enhancement
needs review from maintainer

Please include the following information: Client: vncdotool version: 1.2.0 Server: TigerVNC Server version 1.13.1, built Jan 30 2024 00:00:00 Run the following program: ```python #! /usr/bin/env python3 import sys import...

bug

The logger field is already initialized inside `__init__` so no need to do it again. It is possible for the user to initialize logger after `__init__` and before open(), if...

When using files.put to copy an executable script to the target it always shows up as "changed". This can slow down scripts which check the "changed" bit in order to...

bug

Running `df -Bk` or `df -BK` is equivalent to `df -BKiB` but jc handles this as equivalent to `df -BKB`. Coreutils handling of k/K as identical to KiB is documented...

bug
ready-to-ship

The standard way to load a .groovy file next to the Jenkinsfile is like this: ``` node('node') { stage('load') { code = load 'common.groovy' } } ``` This tries to...