So were you saying that having help output like
"-p=NAME" is standard when the input is actually "-pNAME" in use?
OptParse typically outputs
"-p --long=NAME"
but in this case it seems to output
"-p=NAME --long"
for some reason.
Thoughts?
-=r
So, both of the following are issues, right?
1. parser doesn't accept syntax "-p=NAME", but only "-pNAME"
2. generated help text suggests otherwise, that the former is accepted
IMO, #1 is standard, but #2 is possibly the wrong behavior.
What is causing the difference between typical output and this case? Do you see the "-p --long=NAME" variant for other options in the same program? Looking at comparable output in my own use of optparse, the format tends to look like this:
-r, --read-options [FILE] Read options from file [stdin]
···
--
vjoel : Joel VanderWerf : path berkeley edu : 510 665 3407
What is causing the difference between typical output and this case? Do
you see the "-p --long=NAME" variant for other options in the same
program? Looking at comparable output in my own use of optparse, the
format tends to look like this:
-r, --read-options [FILE] Read options from file [stdin]
When short + long + value + description are too long to hold on a single
line, optionparser tries to present it better, and it shows the bug.
Fred
···
Le 31 janvier 2009 à 23:55, Joel VanderWerf a écrit :
--
When you're brought into this world
They say you're born in sin Well at least they gave me something
I didn't have to steal or have to win Well they tell me that I'm wanted
Yeah, I'm a wanted man (Bon Jovi, Blaze of Glory)