summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2006-06-13 17:14:36 +0000
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2006-06-13 17:14:36 +0000
commitd91363d0f56ad8decfc3a6061034f90e29a41093 (patch)
treed25e69fbacbe7fb08606f7730853fe5b2695da70
parent2be9b587f7af9c6346004fe888cbf7a7131e067b (diff)
downloadcpython-d91363d0f56ad8decfc3a6061034f90e29a41093.tar.gz
fix exception usage
-rw-r--r--Lib/dummy_thread.py3
-rw-r--r--Lib/test/test_thread.py2
2 files changed, 2 insertions, 3 deletions
diff --git a/Lib/dummy_thread.py b/Lib/dummy_thread.py
index 7c26f9e5ef..a72c92722f 100644
--- a/Lib/dummy_thread.py
+++ b/Lib/dummy_thread.py
@@ -79,8 +79,7 @@ def allocate_lock():
def stack_size(size=None):
"""Dummy implementation of thread.stack_size()."""
if size is not None:
- msg = "setting thread stack size not supported on this platform"
- warnings.warn(msg, RuntimeWarning)
+ raise error("setting thread stack size not supported")
return 0
class LockType(object):
diff --git a/Lib/test/test_thread.py b/Lib/test/test_thread.py
index 7b523e2cec..7586ebce25 100644
--- a/Lib/test/test_thread.py
+++ b/Lib/test/test_thread.py
@@ -133,7 +133,7 @@ if os_name in ("nt", "os2", "posix"):
thread.stack_size(4096)
except ValueError:
print 'caught expected ValueError setting stack_size(4096)'
- except thread.ThreadError:
+ except thread.error:
tss_supported = 0
print 'platform does not support changing thread stack size'