summaryrefslogtreecommitdiffstats
path: root/Lib/test/support/__init__.py
diff options
context:
space:
mode:
authorAntoine Pitrou <pitrou@free.fr>2017-09-18 21:50:44 (GMT)
committerGitHub <noreply@github.com>2017-09-18 21:50:44 (GMT)
commit88c60c9668f0aa732693517a60b851cc1dfce0cb (patch)
tree60a30eb883118025b6416f566e64598dac8b8a58 /Lib/test/support/__init__.py
parentb43c4caf81b10e5c7ebaeb3a712c6db584f60bbd (diff)
downloadcpython-88c60c9668f0aa732693517a60b851cc1dfce0cb.zip
cpython-88c60c9668f0aa732693517a60b851cc1dfce0cb.tar.gz
cpython-88c60c9668f0aa732693517a60b851cc1dfce0cb.tar.bz2
Trivial cleanups following bpo-31370 (#3649)
* Trivial cleanups following bpo-31370 * Also cleanup the "importlib._bootstrap_external" module
Diffstat (limited to 'Lib/test/support/__init__.py')
-rw-r--r--Lib/test/support/__init__.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py
index b2e4560..4f60507 100644
--- a/Lib/test/support/__init__.py
+++ b/Lib/test/support/__init__.py
@@ -2060,7 +2060,6 @@ def threading_cleanup(*original_values):
def reap_threads(func):
"""Use this function when threads are being used. This will
ensure that the threads are cleaned up even when the test fails.
- If threading is unavailable this function does nothing.
"""
@functools.wraps(func)
def decorator(*args):