summaryrefslogtreecommitdiff
path: root/Lib/test/test_thread.py
diff options
context:
space:
mode:
authorWalter Doerwald <walter@livinglogic.de>2013-12-02 11:43:20 +0100
committerWalter Doerwald <walter@livinglogic.de>2013-12-02 11:43:20 +0100
commit1a7a32b4875516d530b78f524e83aefac9cad1ab (patch)
tree49024aa50be776f7233b7a7b3083549f258822dd /Lib/test/test_thread.py
parent97261caa90b6e16b6866de47febd059f3b0cd4a1 (diff)
parentd2fb1d098e418d099d7a2b7893a1201f606122fe (diff)
downloadcpython-1a7a32b4875516d530b78f524e83aefac9cad1ab.tar.gz
Fix #19834: merge with 3.3.
Diffstat (limited to 'Lib/test/test_thread.py')
-rw-r--r--Lib/test/test_thread.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_thread.py b/Lib/test/test_thread.py
index a191e157bc..f9a721b03b 100644
--- a/Lib/test/test_thread.py
+++ b/Lib/test/test_thread.py
@@ -68,7 +68,7 @@ class ThreadRunningTests(BasicThreadTest):
thread.stack_size(0)
self.assertEqual(thread.stack_size(), 0, "stack_size not reset to default")
- if os.name not in ("nt", "os2", "posix"):
+ if os.name not in ("nt", "posix"):
return
tss_supported = True