Zev Isert

Results 62 comments of Zev Isert

> I'm not aware of a browser feature to map key codes back to key names (which would depend on the keyboard layout). I'm not super familiar actually, but I...

I'd also like this functionality, it already exists when creating a new MR -- glab will open my editor with our project's default template. It's really hard to edit markdown...

Does `Starlette.exception_handler` count as registering a middleware function? I can't seem to consume the (or access the cached) body in custom exception handlers either.

Thanks for the confirmation, I ended up adapting an idea from [FastAPI](https://fastapi.tiangolo.com/advanced/custom-request-and-route/#accessing-the-request-body-in-an-exception-handler). Essentially my whole app runs as one middleware, and I pulled the same the handler lookup from [`ExceptionMiddleware`](https://github.com/encode/starlette/blob/2ec6db2de6176a34ff5b079c5c3d201ec84c6ad9/starlette/exceptions.py#L78-L101),...

Yeah this is definitely a breaking change either way, as the different exception types can change the control flow of a program. You've seen my use case, so I would...

Any updates on this? Is it just that we're waiting on ECMA for new CSS loading spec? If so, it would be great to have a ESM spec compliant version...

Oh, forgot to mention -- both of the proposed ideas are already valid code, but they don't validate how I'd like them to.

Ditto on that @jeffzi! I think it's good timing to explore how we want to model your two bullet points @cosmicBboy. Sure a lower level `ArrayModel` (maybe `pa.Matrix`??) makes sense...

#369 is done, and with `Annotated` types, we can embed the categories into the type! ```py import pandera as pa import pandera.typing as P from typing import Annotated class MySchema(pa.SchemaModel):...

Hmm. Thanks for the reply, I'll come back here if I figure out what's up with `"python.linting.ignorePatterns"`. With how much configuration we have in vscode now, I'm surprised that we...