module documentation
The command-line parsing.
| Class | |
Undocumented |
| Class | |
Container for all possible pydoctor options. |
| Function | get |
Undocumented |
| Function | parse |
Undocumented |
| Constant | BUILDTIME |
Undocumented |
| Constant | BUILDTIME |
Undocumented |
| Constant | CONFIG |
Undocumented |
| Constant | DEFAULT |
Undocumented |
| Constant | DEFAULT |
Undocumented |
| Variable | |
Undocumented |
| Function | _convert |
Undocumented |
| Function | _convert |
Undocumented |
| Function | _convert |
Undocumented |
| Function | _convert |
Undocumented |
| Function | _convert |
Undocumented |
| Function | _convert |
Undocumented |
| Function | _convert |
Undocumented |
| Function | _convert |
Undocumented |
| Function | _get |
Recognize several version control providers based on option --html-viewsource-base. |
| Function | _parse |
Function returning a tuple (inventory file, base_url) for the intersphinx-file commandline argument. Used double commas because the simple comma might conflict with windows drive names. |
| Function | _warn |
Check the CLI options and warn on deprecated options. |
| Constant | _RECOGNIZED |
Undocumented |
Function returning a tuple (inventory file, base_url) for the intersphinx-file commandline argument. Used double commas because the simple comma might conflict with windows drive names.
>>> _parse_intersphinx_file('c:/one::https://two/') IntersphinxFile(filepath='c:/one', base_url='https://two/') >>> _parse_intersphinx_file('c:/one') IntersphinxFile(filepath='c:/one', base_url=None) >>> _parse_intersphinx_file('three::c:/one::https://two/') Traceback (most recent call last): ... ValueError: delimiter '::' when used, must be present only once per --interspinx-file option >>> _parse_intersphinx_file('::one') Traceback (most recent call last): ... ValueError: delimiter '::' must be present in between two non-empty strings >>> _parse_intersphinx_file('one::') Traceback (most recent call last): ... ValueError: delimiter '::' must be present in between two non-empty strings >>> _parse_intersphinx_file('::::') Traceback (most recent call last): ... ValueError: delimiter '::' when used, must be present only once per --interspinx-file option
Undocumented
| Value |
|