Sebastian Willing
Sebastian Willing
The pool shouldn't lock the client as this results in a deadlock.
The documentation page for 1.4 https://pypi.org/project/docformatter/1.4/ seems to contain a screenshot in the PyCharm section. The file doesn't exist (image URL returns 404 Not Found).
Please consider removing the client-side parameter checking at all. It's causing lots of trouble with nearly no win (see #169 for example). Upgrading the client module isn't always as easy...
**Reproduce:** `echo 'initial value' >test.tt` `perl -MTemplate -le '$tt = Template->new(COMPILE_EXT => ".ttc", COMPILE_DIR => "."); for (1..100) { system "ls -l test.tt test.tt.ttc"; $tt->process("test.tt"); sleep 3; }'` Another shell:...
[The CEL language definition](https://github.com/google/cel-spec/blob/master/doc/langdef.md#logical-operators) suggests: > To get traditional left-to-right short-circuiting evaluation of logical operators, as in C or other languages (also called "McCarthy Evaluation"), the expression e1 && e2...
`false ? true.exists_one(i, false) : false` raises `*BoolType* object is not iterable`. Expected: The first `false` should skip the first branch of the condition and execute the "else" branch (the...