xFly Dragon

Results 6 comments of xFly Dragon

This seems to be a SDL2 problem. using the latest version (SDL v2.0.9) in C++ window = SDL_CreateWindow("Test", 0, 0, 20, 20, 0); int check_w, check_h; SDL_GetWindowSize(window, &check_w, &check_h); //Shows...

@chenyongfei https://github.com/don/BluetoothSerial#write According to document: > String conversion assume 8bit characters. You might need to convert from UTF-8 ASCII. 有试过转换编码么? 按照说明文本, 写入的文字都会使用ASCII, 对UTF-8的文字可能无直接支援 ``` function encode_utf8(s) { return unescape(encodeURIComponent(s)); }...

cannot reproduce the problem with: Python 3.9.6, MacOS Ventura 13.1 and 13.3.1/ M1 pygame 2.4.0 / SDL 2.26.4 pygame 2.3.0 / SDL 2.24.2 pygame 2.2.0 / SDL 2.0.22

> Hey [@husano896](https://github.com/husano896) can you share a snippet of your code, for me to replicate locally? Thanks Hello! thanks for the quick reply! here is the minimal repo that reproduces...

After my investigation, this bug happens when using an anonymous class. like ``` openapi.get('/entry/:id', class extends OpenAPIRoute { //... }); ```

Still happening in 4.38, remove this works, but it breaks my application when using `new Response(readableStream)` ``` "browser": { "./lib/extend-node": false, "./lib/streams": false }, ```