Paweł Kubrak
Paweł Kubrak
nSkinz causes game crash on "Insert" click if loaded to early. This is most likely caused by some module handles dereferenced too soon (race condition between game initialization and nskinz)....
### Summary In one of my recent projects I was in dilemma about declaring constant lookup table (for CRC) as const or static. The table has `256` elements of `u8`/`u16`/`u32`...
[Python] Unable to build: `FileNotFoundError: [Errno 2] No such file or directory: '../Cargo.toml'`
Hi, I'm trying to get tract python package to work on bsd system. While native rust version builds and works fine, the python build script fails early with `FileNotFoundError: [Errno...
`dataclasses.is_dataclass` seems to always evaluate to false for generic types. Environment data - Language Server version: 2024.8.1 - OS and version: darwin arm64 - Python version (and distribution if applicable,...
**Version** 1.4.1 full **Platform** windows 11 64b **Description** For (possibly infinite) SSE streams, when client disconnects (ex. closes connection), hyper connection always returns error of type `hyper::Error(IncompleteMessage)`. I tried this...
### Description This relatively simple scenario causes the program to lock up in some weird state: ```python import asyncio from collections.abc import AsyncIterator from contextlib import asynccontextmanager import aiosqlite @asynccontextmanager...
Hi, In my project I would like to use stm32_metapac directly, as my chip isn't supported by other stm32 pac crates (STM32C0 family). For now I'm not using async, so...
Python 3.10 introduced `str | None` syntax which *should* be equivalent to `Optional[str]`. At the moment such syntax isn't properly recognized by `pure_protobuf`. Following declaration will raise error: ```python @dataclass(kw_only=True)...
### Describe the bug I am developing a project in VSCode, containing both rust and react applications. If I launch a debugger session for a react project (opened in react-only...
Some registers, eg. TIMx_SR on stm32f0 are marked as `rc_w0`. This means that in order to clear specific bit we need to write all others as ones. Is there any...