summaryrefslogtreecommitdiffstats
path: root/Lib/test/fork_wait.py
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2023-03-08 11:45:38 (GMT)
committerGitHub <noreply@github.com>2023-03-08 11:45:38 (GMT)
commit401d7a7f009ca2e282b1a0d1b880dc602afd39dc (patch)
tree654bd90d629a163295682e5e9f3c3aad8d047143 /Lib/test/fork_wait.py
parent7d801f245e2021d19daff105ce722f22aa844391 (diff)
downloadcpython-401d7a7f009ca2e282b1a0d1b880dc602afd39dc.zip
cpython-401d7a7f009ca2e282b1a0d1b880dc602afd39dc.tar.gz
cpython-401d7a7f009ca2e282b1a0d1b880dc602afd39dc.tar.bz2
gh-102515: Remove unused imports in the `Lib/` directory (#102516)
Diffstat (limited to 'Lib/test/fork_wait.py')
-rw-r--r--Lib/test/fork_wait.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/fork_wait.py b/Lib/test/fork_wait.py
index c26c7aa..8c32895 100644
--- a/Lib/test/fork_wait.py
+++ b/Lib/test/fork_wait.py
@@ -9,7 +9,7 @@ On some systems (e.g. Solaris without posix threads) we find that all
active threads survive in the child after a fork(); this is an error.
"""
-import os, sys, time, unittest
+import os, time, unittest
import threading
from test import support
from test.support import threading_helper