John T. Wodder II
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...
This means all types of namespace packages listed at . may be of use here.
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...
Tries to address #1126.
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...
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...
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...