]> git.llucax.com Git - software/pymin.git/commit
Add support for quoted and keyword arguments to the Dispatcher.
authorLeandro Lucarella <llucax@gmail.com>
Sat, 29 Sep 2007 05:55:38 +0000 (02:55 -0300)
committerLeandro Lucarella <llucax@gmail.com>
Sat, 29 Sep 2007 06:07:18 +0000 (03:07 -0300)
commitf49a9cfed0c5d8b13f6a9f558cee8222864aece0
tree016d00f30c8e825d6f3265f34ade95097715f4eb
parent6f9f028c43f77c76a0ac6d4f4f7223e5c6e2ba64
Add support for quoted and keyword arguments to the Dispatcher.

Now it's possible to dispatch commands with quoted arguments, like:
echo "hello world"

Keyword arguments are supported too, you can write something like:
set variable=value
and the handler for set will be called like set(variable="value").

See dispatcher.parse_command for more detail.
TODO
dispatcher.py