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 amaury.forgeotdarc
Recipients ajaksu2, amaury.forgeotdarc, collinwinter, ehuss
Date 2009-02-17.07:41:28
SpamBayes Score 8.5848815e-06
Marked as misclassified No
Message-id <1234856491.32.0.72547373474.issue1244929@psf.upfronthosting.co.za>
In-reply-to
Content
No, the feature is not present in current unittest; the patch is still 
applicable. I'm concerned with backward compatibility, though.

To achieve the same result, the common usage is a mixin class.
See for example Lib/test/test_codecencoding_cn.py:

class BaseTest:
    ... test functions, setup, teardown ...
class TestBlah(BaseTest, unittest.TestCase):
    ... subclass here ...

This is not too bad. I suggest to close this issue as "won't fix".
History
Date User Action Args
2009-02-17 07:41:31amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, collinwinter, ehuss, ajaksu2
2009-02-17 07:41:31amaury.forgeotdarcsetmessageid: <1234856491.32.0.72547373474.issue1244929@psf.upfronthosting.co.za>
2009-02-17 07:41:29amaury.forgeotdarclinkissue1244929 messages
2009-02-17 07:41:28amaury.forgeotdarccreate