diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-09-01 17:52:08 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-09-01 17:52:08 (GMT) |
commit | 625eed765a5f46794018c7484b0985c93a620022 (patch) | |
tree | 3cff4f2846b1d68bac2ad35abbcffa7c45967436 | |
parent | f6fa22efe0fbc726583ec268a80fdb671b148b2c (diff) | |
parent | 4c8ce847e64b0ad7bfebad95034943f5addc0e09 (diff) | |
download | cpython-625eed765a5f46794018c7484b0985c93a620022.zip cpython-625eed765a5f46794018c7484b0985c93a620022.tar.gz cpython-625eed765a5f46794018c7484b0985c93a620022.tar.bz2 |
test_threading isn't rudimentary anymore
-rw-r--r-- | Lib/test/test_threading.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 0a78f8c..29ce039 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -1,4 +1,6 @@ -# Very rudimentary test of threading module +""" +Tests for the threading module. +""" import test.support from test.support import verbose, strip_python_stderr, import_module |