Skip to content

Commit e09057e

Browse files
emmatypinggvanrossum
authored andcommitted
Add --cache-fine-grained to docs (#4685)
This was discovered in #4403. I thought I'd add it while I am splitting changes out of that PR. It was originally introduced in #4526 but not added to the docs it seems. (the rest of the diff is due to my using an actual output of the help command from master)
1 parent 34e63a1 commit e09057e

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

docs/source/command_line.rst

+12-9
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,17 @@ flag (or its long form ``--help``)::
1111
usage: mypy [-h] [-v] [-V] [--python-version x.y] [--platform PLATFORM] [-2]
1212
[--ignore-missing-imports]
1313
[--follow-imports {normal,silent,skip,error}]
14-
[--disallow-any-{unimported,expr,decorated,explicit,generics}]
15-
[--disallow-untyped-calls] [--disallow-untyped-defs]
14+
[--disallow-any-unimported] [--disallow-any-expr]
15+
[--disallow-any-decorated] [--disallow-any-explicit]
16+
[--disallow-any-generics] [--disallow-untyped-calls]
17+
[--disallow-untyped-defs] [--disallow-incomplete-defs]
1618
[--check-untyped-defs] [--disallow-subclassing-any]
17-
[--warn-incomplete-stub] [--warn-redundant-casts]
18-
[--no-warn-no-return] [--warn-return-any] [--warn-unused-ignores]
19+
[--warn-incomplete-stub] [--disallow-untyped-decorators]
20+
[--warn-redundant-casts] [--no-warn-no-return] [--warn-return-any]
21+
[--warn-unused-ignores] [--warn-unused-configs]
1922
[--show-error-context] [--no-implicit-optional] [-i]
20-
[--quick-and-dirty] [--cache-dir DIR] [--skip-version-check]
21-
[--strict-optional]
23+
[--quick-and-dirty] [--cache-dir DIR] [--cache-fine-grained]
24+
[--skip-version-check] [--strict-optional]
2225
[--strict-optional-whitelist [GLOB [GLOB ...]]]
2326
[--junit-xml JUNIT_XML] [--pdb] [--show-traceback] [--stats]
2427
[--inferstats] [--custom-typing MODULE]
@@ -28,9 +31,9 @@ flag (or its long form ``--help``)::
2831
[--shadow-file SOURCE_FILE SHADOW_FILE] [--any-exprs-report DIR]
2932
[--cobertura-xml-report DIR] [--html-report DIR]
3033
[--linecount-report DIR] [--linecoverage-report DIR]
31-
[--memory-xml-report DIR]
32-
[--txt-report DIR] [--xml-report DIR] [--xslt-html-report DIR]
33-
[--xslt-txt-report DIR] [-m MODULE] [-c PROGRAM_TEXT] [-p PACKAGE]
34+
[--memory-xml-report DIR] [--txt-report DIR] [--xml-report DIR]
35+
[--xslt-html-report DIR] [--xslt-txt-report DIR] [-m MODULE]
36+
[-c PROGRAM_TEXT] [-p PACKAGE]
3437
[files [files ...]]
3538

3639
(etc., too long to show everything here)

0 commit comments

Comments
 (0)