diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-08-23 20:40:29 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-08-23 20:40:29 +0200 |
commit | 9486172464454e4ad397b7a94a480ebec1d4a216 (patch) | |
tree | 159d28772ee4708affc7de6830ca29444c1dea4c /info | |
parent | update pkgbuild (diff) | |
download | argparser-9486172464454e4ad397b7a94a480ebec1d4a216.tar.gz argparser-9486172464454e4ad397b7a94a480ebec1d4a216.tar.bz2 argparser-9486172464454e4ad397b7a94a480ebec1d4a216.tar.xz |
issue 2, python version
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'info')
-rw-r--r-- | info/argparser.texinfo | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/info/argparser.texinfo b/info/argparser.texinfo index d774d8b..253c3bb 100644 --- a/info/argparser.texinfo +++ b/info/argparser.texinfo @@ -332,7 +332,10 @@ add additional options. The trigger functions are functions that does not return any value, and has two or three parameters: the used option alternative, the standard option alternative, and for argumented but not variadic -options: the used value. +options: the used value but @code{null}@footnote{Or @code{NULL} or +@code{None} depending on language} if there was not argument. +In the Bash version only two arguments are used if there was not +argument is the value of @code{$#} will be 2 instead of 3. The the Java version, the standard option is not passed, so there are only one or two parameters. Instead, the function is defined |