reito

Results 18 comments of reito

> Why? Iirc there are some non-utf8 symbols in some cpp sources. The compilation fails if the codepage is 936.

Hi, I have the same situation. According to my measurement, on Pynq-Z2, the ADAU1761 samples around 48740Hz, 1.6% error comparing to the standard. And the above situation is 195300 or...

A simple POC: ``` v = (lambda _: (lambda __ : (lambda ___ : _((lambda ____: (lambda _____: _____(____(__)))))((lambda _____ : ___))((lambda ______: ______))))) ``` Compiled with Python 3.9. Tested...

It seems the reason might related to this part of code: ``` case Pyc::MAKE_FUNCTION_A: { PycRef fun_code = stack.top(); stack.pop(); /* Test for the qualified name of the function (at...

By adding this, ``` case Pyc::LOAD_CLOSURE_A: stack.push(new ASTName(code->getCellVar(operand))); break; ``` and modify the `MAKE_FUNCTION` ``` ASTFunction::defarg_t defArgs, kwDefArgs; PycRef fun_name = stack.top(); stack.pop(); PycRef fun_code = stack.top(); stack.pop(); if (operand...

> Hi @cnSchwarzer, Are you willing to submit a pull request? Hi, It was just a quick fix, and I'm not sure if it meets your design. Because Load Closure...

Have you encounter the issue that building on triplet `x64-windows` will stuck at linking `libavcodec`? How do you resolve it?

Good news, things are working. ![image](https://github.com/electron/electron/assets/29846655/27fc11a8-d09f-4c50-8114-2bae90caa559)

PR: https://github.com/electron/electron/pull/42001