This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author wt
Recipients bethard, eric.smith, wt
Date 2012-02-04.21:24:52
SpamBayes Score 0.0014858721
Marked as misclassified No
Message-id <1328390693.33.0.140412591197.issue13922@psf.upfronthosting.co.za>
In-reply-to
Content
I wanted to include a minimal example script, so here it is. If you run this like so:
$ ./test.py -- blah -- blah2

you will get the the following output:
Namespace(args=['blah2'], target=['blah'])

I would have expected the following instead:
Namespace(args=['--', 'blah2'], target=['blah'])
History
Date User Action Args
2012-02-04 21:24:53wtsetrecipients: + wt, bethard, eric.smith
2012-02-04 21:24:53wtsetmessageid: <1328390693.33.0.140412591197.issue13922@psf.upfronthosting.co.za>
2012-02-04 21:24:52wtlinkissue13922 messages
2012-02-04 21:24:52wtcreate