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 xobes
Recipients Michael.Edwards, bethard, daniel.ugra, eli.bendersky, eric.smith, jens.jaehrig, jpaugh, paul.j3, puppet, r.david.murray, tshepang, xobes
Date 2015-01-22.06:05:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421906756.5.0.425787899136.issue14910@psf.upfronthosting.co.za>
In-reply-to
Content
This breaks custom actions.

e.g.:

class dict_action(argparse.Action):
    def __init__(self, *a, **k):
        argparse.Action.__init__(self, *a, **k)

TypeError: __init__() got an unexpected keyword argument 'allow_abbrev'
History
Date User Action Args
2015-01-22 06:05:56xobessetrecipients: + xobes, bethard, eric.smith, r.david.murray, eli.bendersky, daniel.ugra, tshepang, paul.j3, jens.jaehrig, jpaugh, puppet, Michael.Edwards
2015-01-22 06:05:56xobessetmessageid: <1421906756.5.0.425787899136.issue14910@psf.upfronthosting.co.za>
2015-01-22 06:05:56xobeslinkissue14910 messages
2015-01-22 06:05:56xobescreate