Mercurial > python-cmd2
changeset 159:5a94501b6b93
fix new bug in argument parsing
author | catherine@dellzilla |
---|---|
date | Mon, 01 Dec 2008 11:07:29 -0500 |
parents | 87d3f3203b96 |
children | 59b7847ec3ca |
files | cmd2.py |
diffstat | 1 files changed, 6 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/cmd2.py Mon Dec 01 01:34:05 2008 -0500 +++ b/cmd2.py Mon Dec 01 11:07:29 2008 -0500 @@ -52,7 +52,7 @@ def newFunc(instance, arg): try: opts, newArgs = optionParser.parse_args(arg.split()) - arg.parsed['args'] = arg[arg.find(newArgs[0]):] + newArgs = arg[arg.find(newArgs[0]):] except (optparse.OptionValueError, optparse.BadOptionError, optparse.OptionError, optparse.AmbiguousOptionError, optparse.OptionConflictError), e: @@ -61,8 +61,9 @@ return if hasattr(opts, '_exit'): return None + arg = arg.parser('%s %s' % (arg.parsed.command, newArgs)) result = func(instance, arg, opts) - return result + return result newFunc.__doc__ = '%s\n%s' % (func.__doc__, optionParser.format_help()) return newFunc return option_setup @@ -137,6 +138,7 @@ writeToPasteBuffer = getPasteBuffer pyparsing.ParserElement.setDefaultWhitespaceChars(' \t') +''' def parseSearchResults(pattern, s): generator = pattern.scanString(s) try: @@ -147,7 +149,7 @@ result = pyparsing.ParseResults('') result['before'] = s return result - +''' def replaceInput(source): if source: @@ -420,6 +422,7 @@ result['suffix'] = useTerminatorFrom.parsed.suffix p = ParsedString(result.args) p.parsed = result + p.parser = self.parsed return p def onecmd(self, line, assumeComplete=False):