[issue22223] argparse not including '--' arguments in previous optional REMAINDER argument

2014-08-20 Thread Juraj Ivancic
Changes by Juraj Ivancic : -- nosy: +Juraj.Ivancic ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue22223] argparse not including '--' arguments in previous optional REMAINDER argument

2014-08-18 Thread Jurko Gospodnetić
Jurko Gospodnetić added the comment: Might be related to the following issues: http://bugs.python.org/issue9571 http://bugs.python.org/issue13922 -- ___ Python tracker ___ _

[issue22223] argparse not including '--' arguments in previous optional REMAINDER argument

2014-08-18 Thread Jurko Gospodnetić
New submission from Jurko Gospodnetić: If you have an optional nargs=argparse.REMAINDER argument defined then, if specified, its value should contain all the remaining command-line content. However, it seems that value does not include later '--' arguments. For example, the following works as e