colorfulappl
colorfulappl
### Description - [x] Can you reproduce the issue? #### Issue Details While I'm trying to build the latest version of MarkText by command ```bash yarn run build ``` ,...
Fix 3 bugs introduced in #18609. Bug reason lists in each commit's commit message. https://bugs.python.org/issue20291 * Issue: gh-64490
Argument Clinic `str_converter` generate such code when `encoding` is set (see function `test_str_converter_encoding` in file Lib/test/clinic.test): ```c /* -- snip -- */ if (!_PyArg_ParseStack(args, nargs, "esesetes#et#:test_str_converter_encoding", "idna", &a, "idna", &b,...
A draft implementation of Argument Clinic functional test. The test do: - Add a module with AC-declared functions, each function corresponds to one type of function signatures - Setup a...
Fix double-free bug mentioned at https://github.com/python/cpython/issues/99240, by moving memory clean up out of "exit" label. * Issue: gh-99240
While Argument Clinic generated code is packing varargs to a tuple, the arguments' refcounts are not increased. So all the packed arguments‘ refcounts are decreased 1 improperly when the tuple...