Václav Brožík

Results 7 issues of Václav Brožík

Often it is useful to observe how is latency changing in real time. The cases could be: * observing impact of a network component (e.g. a firewall) load * observing...

I am wondering why the table of French compose sequences at http://wincompose.info/doc/french/ uses the order letter, diacritic. The other order diacritic, letter resembles the use of dead keys which seems...

In the Code Style chapter examples - [Short Ways to Manipulate Lists](https://python-docs.readthedocs.io/en/latest/writing/style.html#short-ways-to-manipulate-lists) there is an example "Add three to all list members." "bad" ```python for i in range(len(a)): a[i] +=...

For example this method has a docstring sentence in imperative mood beginning with the adverb "always": ```Python def ignore_aliases(self, data): """Always ignore aliases.""" return True ``` pydocstyle is unable to...

The build-in extension `sphinx.ext.autodoc` contains the parameter [`autodoc_typehints`](https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html#confval-autodoc_typehints) with option `description` since the version 3.0. It seems that this configuration option makes `sphinx-autodoc-typehints` obsolete. Am I right? In any way...

help wanted
documentation

**Environment** Please provide some information about your computer environment: - [x] OS: ``` $ uname -a Linux NTT-44Q83J3 5.10.102.1-microsoft-standard-WSL2 #1 SMP Wed Mar 2 00:30:59 UTC 2022 x86_64 x86_64 x86_64...

The signature of the method `Parser.parse_args()` types the argument `raw_args: List[str]`: https://github.com/typed-argparse/typed-argparse/blob/d5b596a7df6cce0b763894053ebec602f44951ca/typed_argparse/parser.py#L175 This is too strict because `raw_args` is only being used as `args` argument for `argparse.ArgumentParser.parse_args()` which is typed...