diff options
-rw-r--r-- | Lib/test/test_thread.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_thread.py b/Lib/test/test_thread.py index 7586ebc..883ca6c 100644 --- a/Lib/test/test_thread.py +++ b/Lib/test/test_thread.py @@ -121,7 +121,7 @@ print '\n*** Changing thread stack size ***' if thread.stack_size() != 0: raise ValueError, "initial stack_size not 0" -thread.stack_size(0) +thread.stack_size(0) if thread.stack_size() != 0: raise ValueError, "stack_size not reset to default" |