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 paul.j3
Recipients Kotan, TD22057, bethard, catherine, elsdoerfer, eric.araujo, paul.j3, phawkins, wrobell
Date 2013-10-22.02:55:49
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1382410549.23.0.836105232344.issue9338@psf.upfronthosting.co.za>
In-reply-to
Content
parse_args() would see ['-foo', 'bar1,bar2,bar3', 'pos1', 'pos2'].  The splitting on space is done by the shell.  So having your own code split 'bar1,bar2,bar3' is simplest.  But that would be messed up if the user entered 'bar1, bar2, bar3...'.  You could also ask the user to use quotes - "bar1, bar2, bar3".
History
Date User Action Args
2013-10-22 02:55:49paul.j3setrecipients: + paul.j3, bethard, wrobell, eric.araujo, TD22057, catherine, elsdoerfer, Kotan, phawkins
2013-10-22 02:55:49paul.j3setmessageid: <1382410549.23.0.836105232344.issue9338@psf.upfronthosting.co.za>
2013-10-22 02:55:49paul.j3linkissue9338 messages
2013-10-22 02:55:49paul.j3create