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 2014-04-22.06:33:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1398148398.15.0.628352017295.issue9338@psf.upfronthosting.co.za>
In-reply-to
Content
http://bugs.python.org/issue15112
breaks one test that I added to issue

    +class TestPositionalsAfterOptionalsPlus(ParserTestCase):
    +    """Tests specifying a positional that follows an arg with nargs=+
    +    http://bugs.python.org/issue9338#msg111270
    +    prototypical problem"""
    +
    +    argument_signatures = [
    +        Sig('-w'),
    +        Sig('-x', nargs='+'),
    +        Sig('y', type=int),
    +        Sig('z', nargs='*', type=int)]
    +    failures = ['1 -x 2 3 -w 4 5 6' # error: unrecognized arguments: 5 6
    +                # z consumed in 1st argument group '1'
    +    ]

This no longer fails.  Due to 15112, z=[5,6].  That is, it is no longer consumed by the 1st argument group.
History
Date User Action Args
2014-04-22 06:33:18paul.j3setrecipients: + paul.j3, bethard, wrobell, eric.araujo, TD22057, catherine, elsdoerfer, Kotan, phawkins
2014-04-22 06:33:18paul.j3setmessageid: <1398148398.15.0.628352017295.issue9338@psf.upfronthosting.co.za>
2014-04-22 06:33:18paul.j3linkissue9338 messages
2014-04-22 06:33:17paul.j3create