Remove sys.platform == 'riscos' checks from some Python and test files. #16501

This commit is contained in:
Christian Heimes 2012-11-19 00:59:39 +01:00
parent 8473e5740f
commit de0b962998
6 changed files with 4 additions and 14 deletions

View file

@ -15,9 +15,6 @@ try:
except ImportError:
threading = None
if sys.platform == 'riscos':
raise unittest.SkipTest("Can't test signal on %s" % sys.platform)
class HandlerBCalled(Exception):
pass