Lev Vereshchagin

Results 15 issues of Lev Vereshchagin

Selector by attribute (`[foo="bar.baz"]`) works in browser or using JSDom, but fails with happy-dom. JSDom outputs `HTMLDivElement {}`: ```js const { JSDOM } = require("jsdom"); const { window: { document...

bug

Current ASGI runtime is quite in efficient: it creates new event loop and queue on each function call. https://github.com/vercel/vercel/blob/b05d653cf1ce93735cfce36ef364dd9937c52627/packages/python/vc_init.py#L191 We can avoid dealing with event loops and queues with `asyncio.run()`.

I use GitHub Light and GitHub Dark custom themes in [Wezterm](https://github.com/wez/wezterm). The terminal made it easy to custom themes: just put files in `~/.config/wezterm/colors/`. Here's `GitHub Light.toml`, for example: ```toml...

Currently type information in API is not complete. It makes it hard to use the library with mypy's strict mode and Pyright. Also see: https://github.com/darrenburns/ward/issues/261#issuecomment-1301968435

Caught a regression after 1.15.0 (via #67). Works fine on 1.14.1. If an async resource has any IO in creator function, this function will be caused twice resulting in different...

bug

This works: ```md [llm-ui][llm-ui-link] hello [llm-ui-link]: https://github.com/llm-ui-kit/llm-ui ``` This does not: ````md [llm-ui][llm-ui-link] ``` hello ``` [llm-ui-link]: https://github.com/llm-ui-kit/llm-ui ```` I think, it happens because code block is not detected correctly....

Hey there! At my work, we were successfully using aiostomp in production for a while. Since aiostomp is not active anymore (and I don't really like the API), I decided...

### Description `ModelFactory.coverage()` fails on models that have `validation_alias` set ### MCVE ```python import typing import pydantic from polyfactory.factories.pydantic_factory import ModelFactory class C(pydantic.BaseModel): a: typing.Annotated[str, pydantic.Field(validation_alias="b")] class CFactory(ModelFactory[C]): pass for...

bug