Part of twisted.python._shellcomp View Source View In Hierarchy
Known subclasses: twisted.python._shellcomp.ZshSubcommandBuilder
Completions for options to subcommands won't be generated because this
class will never be used if the user is completing options for a specific
subcommand. (See ZshSubcommandBuilder
below)
Instance Variables | options | The twisted.python.usage.Options
instance defined for this command.
(type: twisted.python.usage.Options
) |
cmdName | The name of the command we're generating completions for.
(type: str
) | |
file | The file to write the completion function to.
(type: file
) |
Method | __init__ | Undocumented |
Method | write | Generate the completion function and write it to the output file
@return: None |
Parameters | genSubs | Flag indicating whether or not completions for the list of subcommand
should be generated. Only has an effect if the subCommands
attribute has been defined on the twisted.python.usage.Options
instance.
(type: bool
) |
Returns | None
|