change way to describe fields of CapBaseObject, and lot of documentation
This commit is contained in:
parent
99391a95ef
commit
c6a141595c
35 changed files with 1630 additions and 638 deletions
|
|
@ -39,7 +39,7 @@ from .formatters.load import FormattersLoader, FormatterLoadError
|
|||
from .results import ResultsCondition, ResultsConditionError
|
||||
|
||||
|
||||
__all__ = ['ReplApplication', 'NotEnoughArguments']
|
||||
__all__ = ['NotEnoughArguments', 'ReplApplication']
|
||||
|
||||
|
||||
class NotEnoughArguments(Exception):
|
||||
|
|
@ -354,9 +354,10 @@ class ReplApplication(Cmd, ConsoleApplication):
|
|||
def complete(self, text, state):
|
||||
"""
|
||||
Override of the Cmd.complete() method to:
|
||||
- add a space at end of proposals
|
||||
- display only proposals for words which match the
|
||||
text already written by user.
|
||||
|
||||
* add a space at end of proposals
|
||||
* display only proposals for words which match the
|
||||
text already written by user.
|
||||
"""
|
||||
super(ReplApplication, self).complete(text, state)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue