diff options
author | Raymond Hettinger <python@rcn.com> | 2012-04-23 21:26:58 -0700 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2012-04-23 21:26:58 -0700 |
commit | e65753e09e9b8a383b68b71f7e39d597b0c61b68 (patch) | |
tree | 7c3536e4b7c5afbaac0d7235721fa4f9c7a8d0ca /Lib/test/test_thread.py | |
parent | ce0e0c7671a57f26b1765ef35197f6bffc0459ae (diff) | |
parent | 393b7b59a48b1cef11d76e9ca71cf8fa5972eda5 (diff) | |
download | cpython-git-e65753e09e9b8a383b68b71f7e39d597b0c61b68.tar.gz |
merge
Diffstat (limited to 'Lib/test/test_thread.py')
-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 ae9a7d9527..413889ad22 100644 --- a/Lib/test/test_thread.py +++ b/Lib/test/test_thread.py @@ -150,7 +150,7 @@ class ThreadRunningTests(BasicThreadTest): thread.start_new_thread(task, ()) started.acquire() while thread._count() > c: - pass + time.sleep(0.01) self.assertIn("Traceback", stderr.getvalue()) |