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 michael.foord
Recipients Yaroslav.Halchenko, abingham, brian.curtin, eric.araujo, eric.snow, exarkun, ezio.melotti, fperez, michael.foord, nchauvat, ncoghlan, pitrou, r.david.murray
Date 2011-07-21.15:26:50
SpamBayes Score 0.023728041
Marked as misclassified No
Message-id <1311262011.63.0.82600032911.issue7897@psf.upfronthosting.co.za>
In-reply-to
Content
David, I don't understand - it looks like Nick's suggestion would allow you to create a name per case, that's the point of it!

You could even do this:

def _name_from_case(name, cases):
    for idx, case in enumerate(cases, start=1):
        test_name = case[0]
        params = case[1:]
        yield (test_name, params)
History
Date User Action Args
2011-07-21 15:26:51michael.foordsetrecipients: + michael.foord, exarkun, ncoghlan, pitrou, ezio.melotti, eric.araujo, r.david.murray, brian.curtin, fperez, Yaroslav.Halchenko, nchauvat, abingham, eric.snow
2011-07-21 15:26:51michael.foordsetmessageid: <1311262011.63.0.82600032911.issue7897@psf.upfronthosting.co.za>
2011-07-21 15:26:51michael.foordlinkissue7897 messages
2011-07-21 15:26:51michael.foordcreate