ember91

Results 11 issues of ember91

There are different messaging patterns in ZeroMQ, for instance: - Request-reply - Pub-sub - Pipeline - Exclusive pair It seems like the Client-server messaging pattern is missing from this library....

.clang-format-ignore files are not respected with this extension. They are similar to .gitignore files and describe which files should not be formatted. Note that I'm pointing to a custom clang-format...

The following will trigger N816 twice: ```python (someVar1 == 8 for someVar1 in []) [someVar2 == 8 for someVar2 in []] ``` N816 is explained as "mixedCase variable in global...

I think "additionals" is a real word and should not be corrected to "additional".

I hope this hasn't been reported before. typos version: `1.23.6` `/some/path/some_misspellings.txt` is a file with errors which typos in its default configuration would detect. `/some/path/_typos.toml` has the contents: ```toml [files]...

C-bug
S-triage

Also fix some spelling errors

Hi! Is there a race when running multiple `tika.parser.from_file()` in parallel using Python multiprocessing? It seems to me that if I run `from_file` it will first download the jar file...

On Windows `sigtool --info` doesn't work with unicode characters in its file path. How to reproduce: ```powershell New-Item -ItemType File -Path file_öταБЬℓσ.txt sigtool --info file_öταБЬℓσ.txt ``` Which leads to "Can't...

CP_ACP makes more sense than CP_OEMCP. It is more common that applications use ACP over OEM. Tested by inputting a file with unicode characters in its name. Now it is...