projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b16e13
)
Tab test_repr_daemon over so it's included in ThreadTests.
author
Brian Curtin
<brian.curtin@gmail.com>
Fri, 23 Jul 2010 16:30:10 +0000
(16:30 +0000)
committer
Brian Curtin
<brian.curtin@gmail.com>
Fri, 23 Jul 2010 16:30:10 +0000
(16:30 +0000)
Noticed by Amaury.
Lib/test/test_threading.py
patch
|
blob
|
history
diff --git
a/Lib/test/test_threading.py
b/Lib/test/test_threading.py
index 201bfcb1801633f156180088dad13f63ad2a8a64..bf9f90d3b1ba585493f60290c7660a41bf3bde68 100644
(file)
--- a/
Lib/test/test_threading.py
+++ b/
Lib/test/test_threading.py
@@
-414,11
+414,11
@@
class ThreadTests(BaseTestCase):
e.isSet()
threading.activeCount()
-def test_repr_daemon(self):
- t = threading.Thread()
- self.assertFalse('daemon' in repr(t))
- t.daemon = True
- self.assertTrue('daemon' in repr(t))
+
def test_repr_daemon(self):
+
t = threading.Thread()
+
self.assertFalse('daemon' in repr(t))
+
t.daemon = True
+
self.assertTrue('daemon' in repr(t))
class ThreadJoinOnShutdown(BaseTestCase):