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 serhiy.storchaka
Recipients asvetlov, chris.jerdonek, eli.bendersky, kushal.das, serhiy.storchaka, tshepang
Date 2013-08-16.18:13:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376676814.77.0.993299508557.issue16799@psf.upfronthosting.co.za>
In-reply-to
Content
Thank you for the review Eli. Could you please review issue17974 while I will write tests?

As for a duplication I think about using vars():


def main(tests=None, testdir=None, verbose=0, quiet=False, ...):
    return _main(**vars())

def _main(tests, testdir, **kwargs):
    ns = argparse.Namespace(**kwargs)
    ...
History
Date User Action Args
2013-08-16 18:13:34serhiy.storchakasetrecipients: + serhiy.storchaka, eli.bendersky, asvetlov, chris.jerdonek, tshepang, kushal.das
2013-08-16 18:13:34serhiy.storchakasetmessageid: <1376676814.77.0.993299508557.issue16799@psf.upfronthosting.co.za>
2013-08-16 18:13:34serhiy.storchakalinkissue16799 messages
2013-08-16 18:13:34serhiy.storchakacreate