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 arigo, bethard, paul.j3, pitrou
Date 2014-03-04.07:00:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1393916430.47.0.21437450413.issue18943@psf.upfronthosting.co.za>
In-reply-to
Content
I need to tweak the last patch so 'using_default' is also set when an "nargs='*'" positional is set to the '[]' default.

             if action.default is not None:
                 value = action.default
    +            using_default = True
             else:
                 value = arg_strings
    +            using_default = True  # tweak
History
Date User Action Args
2014-03-04 07:00:30paul.j3setrecipients: + paul.j3, arigo, pitrou, bethard
2014-03-04 07:00:30paul.j3setmessageid: <1393916430.47.0.21437450413.issue18943@psf.upfronthosting.co.za>
2014-03-04 07:00:30paul.j3linkissue18943 messages
2014-03-04 07:00:30paul.j3create