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 brett.cannon
Recipients brett.cannon, rpointel
Date 2013-09-30.14:53:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380552781.68.0.687668430433.issue19134@psf.upfronthosting.co.za>
In-reply-to
Content
test.support.import_module is typically meant for global imports as function-level imports are discouraged in general. I would instead use the unittest.skipIf decorator::

  @unittest.skipIf(not test.support.multiprocessing, "multiprocessing required") 
  def test_qualname_source(self):
    ...
History
Date User Action Args
2013-09-30 14:53:01brett.cannonsetrecipients: + brett.cannon, rpointel
2013-09-30 14:53:01brett.cannonsetmessageid: <1380552781.68.0.687668430433.issue19134@psf.upfronthosting.co.za>
2013-09-30 14:53:01brett.cannonlinkissue19134 messages
2013-09-30 14:53:01brett.cannoncreate