diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-08-04 02:30:45 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-08-04 02:30:45 (GMT) |
commit | 81676dc5209cd03af7dc0f59c6d7992e027af03e (patch) | |
tree | 22c3872232737ba9b3acddea583a87e063484fa5 /Lib/test/test_threadsignals.py | |
parent | 3d3cfdb4994ed672436e3e16b66ac1b9349543db (diff) | |
download | cpython-81676dc5209cd03af7dc0f59c6d7992e027af03e.zip cpython-81676dc5209cd03af7dc0f59c6d7992e027af03e.tar.gz cpython-81676dc5209cd03af7dc0f59c6d7992e027af03e.tar.bz2 |
To raise TestSkipped, you must import TestSkipped.
Diffstat (limited to 'Lib/test/test_threadsignals.py')
-rw-r--r-- | Lib/test/test_threadsignals.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_threadsignals.py b/Lib/test/test_threadsignals.py index bffcb8f..84cf2fa 100644 --- a/Lib/test/test_threadsignals.py +++ b/Lib/test/test_threadsignals.py @@ -5,7 +5,7 @@ import thread import signal import os import sys -from test import test_support +from test import test_support, TestSkipped if sys.platform[:3] in ('win', 'os2') or sys.platform=='riscos': raise TestSkipped, "Can't test signal on %s" % sys.platform |