Logan Hunt
Logan Hunt
### Steps to reproduce: ``` $ curl -fsSL https://bun.sh/install | bash curl: (22) The requested URL returned error: 404 error: Failed to download bun from https://github.com/Jarred-Sumner/bun-releases-for-updater/releases/latest/download/bun-linux-x64.zip # For reference: $...
## Change Summary You can already use `Field(alias='whatever')` on the model to allow for converting from ORM models that might be named differently, but this means that the model knows...
Closes #13243. For the most part, in order to determine which fields where worth pattern matching against, I looked at what was being displayed in the `StrConv` class (defined in...
I am working on a project which makes heavy use of Mypy AST trees/nodes. and it would be nice if there was less boilerplate when doing pattern matching against nodes...
```python from beartype import beartype @beartype def f(x: str = 1) -> None: print(f"called with type {type(x)}") f() f(1) ``` Produces the following: ``` $ python3 main.py called with type...
I am getting mypy errors when using the `inject` decorator on classes: ```python # file.py from kink import di, inject di["x"] = 42 @inject class C: def __init__(self, x: int)...
Given the following AssemblyScript file: ```typescript class C { x: u8 | null; y: null | u8; } ``` I get the following errors: ``` $ asc tmp.ts ERROR TS1005:...
### Repro In `file.py`: ```python import other ``` In `other` (no file extension): ```shell #!/bin/sh echo syntax error ``` Running: ``` $ mypy file.py other:3: error: invalid syntax [syntax] Found...
### Steps to reproduce * Open Firefox (currently using version 120.0.1) * Go to [https://medv.io/codejar/](https://medv.io/codejar/) * In the code example, move cursor to position indicated by `│` and hit backspace:...