qutebrowser/doc/help
Florian Bruhin a0d0b6464f Use typing.py-like annotations for command args
This means:

- An annotation like (int, str) is now typing.Union[int, str].
- utils.typing got expanded so it acts like the real typing.py, with
  issubclass() working properly with typing.Union and __union_params__
  being set.
- A literal string doesn't exist anymore as annotation, instead
  @cmdutils.argument now has a 'choices' argument which can be used like
  @cmdutils.argument('arg', choices=['val1', 'val2']).
- Argument validating/converting is now entirely handled by
  argparser.type_conv instead of relying on python's argparse, i.e.
  type/choices is now not passed to argparse anymore.
2016-05-18 06:55:17 +02:00
..
commands.asciidoc Use typing.py-like annotations for command args 2016-05-18 06:55:17 +02:00
index.asciidoc add CONTRIBUTING to index and asciidoc2html.py 2016-02-10 18:37:46 +01:00
settings.asciidoc Regenerate docs 2016-05-03 06:51:24 +02:00