Remove unused imports in tests (GH-14518)

This commit is contained in:
Victor Stinner 2019-07-01 18:28:25 +02:00 committed by GitHub
parent f9b7457bd7
commit 8f4ef3b019
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
53 changed files with 31 additions and 84 deletions

View file

@ -1,7 +1,6 @@
import os
import posixpath
import unittest
import warnings
from posixpath import realpath, abspath, dirname, basename
from test import support, test_genericpath
from test.support import FakePath
@ -12,6 +11,7 @@ try:
except ImportError:
posix = None
# An absolute path to a temporary filename for testing. We can't rely on TESTFN
# being an absolute path, so we need this.