colorfulappl

Results 6 issues of 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

type-bug
awaiting core review
needs backport to 3.10
expert-argument-clinic
needs backport to 3.11

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,...

type-bug
expert-argument-clinic

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...

tests
awaiting changes

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

type-bug
awaiting merge
expert-argument-clinic

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...

awaiting review