Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
597d15af
Commit
597d15af
authored
Apr 24, 2016
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue #23277: Remove unused support.run_unittest import.
parent
c7f44aa9
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
4 additions
and
16 deletions
+4
-16
Lib/test/test_codecmaps_cn.py
Lib/test/test_codecmaps_cn.py
+0
-1
Lib/test/test_codecmaps_hk.py
Lib/test/test_codecmaps_hk.py
+0
-1
Lib/test/test_codecmaps_kr.py
Lib/test/test_codecmaps_kr.py
+0
-1
Lib/test/test_codecmaps_tw.py
Lib/test/test_codecmaps_tw.py
+0
-1
Lib/test/test_dictcomps.py
Lib/test/test_dictcomps.py
+0
-2
Lib/test/test_email/test_asian_codecs.py
Lib/test/test_email/test_asian_codecs.py
+0
-1
Lib/test/test_file.py
Lib/test/test_file.py
+1
-1
Lib/test/test_fileinput.py
Lib/test/test_fileinput.py
+1
-1
Lib/test/test_htmlparser.py
Lib/test/test_htmlparser.py
+0
-1
Lib/test/test_importlib/test_namespace_pkgs.py
Lib/test/test_importlib/test_namespace_pkgs.py
+0
-1
Lib/test/test_iterlen.py
Lib/test/test_iterlen.py
+0
-1
Lib/test/test_macpath.py
Lib/test/test_macpath.py
+1
-1
Lib/test/test_sched.py
Lib/test/test_sched.py
+0
-1
Lib/test/test_tools/test_pdeps.py
Lib/test/test_tools/test_pdeps.py
+0
-1
Lib/test/test_userstring.py
Lib/test/test_userstring.py
+1
-1
No files found.
Lib/test/test_codecmaps_cn.py
View file @
597d15af
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec mapping tests for PRC encodings
# Codec mapping tests for PRC encodings
#
#
from
test
import
support
from
test
import
multibytecodec_support
from
test
import
multibytecodec_support
import
unittest
import
unittest
...
...
Lib/test/test_codecmaps_hk.py
View file @
597d15af
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec mapping tests for HongKong encodings
# Codec mapping tests for HongKong encodings
#
#
from
test
import
support
from
test
import
multibytecodec_support
from
test
import
multibytecodec_support
import
unittest
import
unittest
...
...
Lib/test/test_codecmaps_kr.py
View file @
597d15af
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec mapping tests for ROK encodings
# Codec mapping tests for ROK encodings
#
#
from
test
import
support
from
test
import
multibytecodec_support
from
test
import
multibytecodec_support
import
unittest
import
unittest
...
...
Lib/test/test_codecmaps_tw.py
View file @
597d15af
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec mapping tests for ROC encodings
# Codec mapping tests for ROC encodings
#
#
from
test
import
support
from
test
import
multibytecodec_support
from
test
import
multibytecodec_support
import
unittest
import
unittest
...
...
Lib/test/test_dictcomps.py
View file @
597d15af
import
unittest
import
unittest
from
test
import
support
# For scope testing.
# For scope testing.
g
=
"Global variable"
g
=
"Global variable"
...
...
Lib/test/test_email/test_asian_codecs.py
View file @
597d15af
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# email package unit tests for (optional) Asian codecs
# email package unit tests for (optional) Asian codecs
import
unittest
import
unittest
from
test.support
import
run_unittest
from
test.test_email.test_email
import
TestEmailBase
from
test.test_email.test_email
import
TestEmailBase
from
email.charset
import
Charset
from
email.charset
import
Charset
...
...
Lib/test/test_file.py
View file @
597d15af
...
@@ -7,7 +7,7 @@ from weakref import proxy
...
@@ -7,7 +7,7 @@ from weakref import proxy
import
io
import
io
import
_pyio
as
pyio
import
_pyio
as
pyio
from
test.support
import
TESTFN
,
run_unittest
from
test.support
import
TESTFN
from
collections
import
UserList
from
collections
import
UserList
class
AutoFileTests
:
class
AutoFileTests
:
...
...
Lib/test/test_fileinput.py
View file @
597d15af
...
@@ -22,7 +22,7 @@ except ImportError:
...
@@ -22,7 +22,7 @@ except ImportError:
from
io
import
BytesIO
,
StringIO
from
io
import
BytesIO
,
StringIO
from
fileinput
import
FileInput
,
hook_encoded
from
fileinput
import
FileInput
,
hook_encoded
from
test.support
import
verbose
,
TESTFN
,
run_unittest
,
check_warnings
from
test.support
import
verbose
,
TESTFN
,
check_warnings
from
test.support
import
unlink
as
safe_unlink
from
test.support
import
unlink
as
safe_unlink
from
test
import
support
from
test
import
support
from
unittest
import
mock
from
unittest
import
mock
...
...
Lib/test/test_htmlparser.py
View file @
597d15af
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
import
html.parser
import
html.parser
import
pprint
import
pprint
import
unittest
import
unittest
from
test
import
support
class
EventCollector
(
html
.
parser
.
HTMLParser
):
class
EventCollector
(
html
.
parser
.
HTMLParser
):
...
...
Lib/test/test_importlib/test_namespace_pkgs.py
View file @
597d15af
...
@@ -7,7 +7,6 @@ import types
...
@@ -7,7 +7,6 @@ import types
import
unittest
import
unittest
from
test.test_importlib
import
util
from
test.test_importlib
import
util
from
test.support
import
run_unittest
# needed tests:
# needed tests:
#
#
...
...
Lib/test/test_iterlen.py
View file @
597d15af
...
@@ -42,7 +42,6 @@ enumerate(iter('abc')).
...
@@ -42,7 +42,6 @@ enumerate(iter('abc')).
"""
"""
import
unittest
import
unittest
from
test
import
support
from
itertools
import
repeat
from
itertools
import
repeat
from
collections
import
deque
from
collections
import
deque
from
operator
import
length_hint
from
operator
import
length_hint
...
...
Lib/test/test_macpath.py
View file @
597d15af
import
macpath
import
macpath
from
test
import
support
,
test_genericpath
from
test
import
test_genericpath
import
unittest
import
unittest
...
...
Lib/test/test_sched.py
View file @
597d15af
...
@@ -2,7 +2,6 @@ import queue
...
@@ -2,7 +2,6 @@ import queue
import
sched
import
sched
import
time
import
time
import
unittest
import
unittest
from
test
import
support
try
:
try
:
import
threading
import
threading
except
ImportError
:
except
ImportError
:
...
...
Lib/test/test_tools/test_pdeps.py
View file @
597d15af
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
import
os
import
os
import
unittest
import
unittest
import
tempfile
import
tempfile
from
test
import
support
from
test.test_tools
import
scriptsdir
,
skip_if_missing
,
import_tool
from
test.test_tools
import
scriptsdir
,
skip_if_missing
,
import_tool
...
...
Lib/test/test_userstring.py
View file @
597d15af
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
import
string
import
string
import
unittest
import
unittest
from
test
import
s
upport
,
s
tring_tests
from
test
import
string_tests
from
collections
import
UserString
from
collections
import
UserString
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment