John T. Wodder II

Results 282 issues of John T. Wodder II

The inspection functions should take a `raising: bool = False` parameter, and the command line should take a `--raising` option, for controlling whether the wheel inspection should raise an exception...

enhancement
CLI
c:inspecting
error handling

This means all types of namespace packages listed at . may be of use here.

enhancement
c:inspecting
c:derived

Since the CLI will output multiple objects when given multiple wheels, it seems only natural that the output should be a JSON array, either by default or when given a...

enhancement
CLI

In an application that uses `CachingFileSystem`, we are interested in implementing partial cache cleanup based on cached file size & age. While fsspec already has the necessary pieces to accomplish...

Consider the following (contrived) code: ```python from typing import Type def untyped_function(): return int def foo() -> Type[int]: x = untyped_function() assert issubclass(x, int) return x ``` Running mypy on...

bug
topic-type-narrowing

It appears that kondo (as of commit 69c153b) detects Python projects by looking for a file with a `.py` extension, at which point the directory in which this file is...

bug

It seems that, currently, `kondo` only deletes `__pycache__` directories located in the root of a Python project, but this is not the only place they can occur (and often there...

bug