Anders Kaseorg

Results 389 comments of Anders Kaseorg

`phonenumberslite` is typically not going to be the only package being installed at a time. It may be one of many requirements of some other package, or listed in a...

I see this problem too. Bisection shows it was introduced by commit 638d0f331bb8d24557c30b55137f1af756a216e0, specifically this part of the change: ```diff --- a/src/index.ts +++ b/src/index.ts @@ -165,7 +168,10 @@ export async...

Minimal reproduction on Linux from an empty directory: **`electron/main.js`** ```js import { app, BrowserWindow } from "electron"; app.whenReady().then(async () => { const win = new BrowserWindow(); await win.loadURL("about:blank"); win.webContents.openDevTools(); });...

I noticed multiple bugs in the `escape_invalid_stream_topic_characters` function (#30071) that `get_fallback_markdown_link` is based on: - It fails to escape the escape character `&` itself. - The ``` sequence will probably...

This issue (specifically, its consequence #12193) is blocking Zulip from shedding its reliance on the system Python version and switching to uv’s Python binaries. uvr has broken argument parsing that...

Please include this 1.11 regression fix: - #17588 (This is different from #17495.)

Do not close and reopen multiple pull requests for the same thing, even to fix the commit structure; you can always fix the commit structure by rebasing and force-pushing your...

`MockResponse` is also incompatible with `Response` for the same reason. https://github.com/python-openapi/openapi-core/blob/b8f0644bde3afb4e0273c4cfa8f2ac3eee9f76b3/openapi_core/testing/responses.py#L20