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
e4fbb020
Commit
e4fbb020
authored
Apr 24, 2016
by
Serhiy Storchaka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused support.run_unittest imports.
It is not needed since tests use unittest.main().
parent
8153ac8f
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
6 additions
and
15 deletions
+6
-15
Lib/test/test_charmapcodec.py
Lib/test/test_charmapcodec.py
+1
-1
Lib/test/test_codecencodings_cn.py
Lib/test/test_codecencodings_cn.py
+0
-1
Lib/test/test_codecencodings_hk.py
Lib/test/test_codecencodings_hk.py
+0
-1
Lib/test/test_codecencodings_iso2022.py
Lib/test/test_codecencodings_iso2022.py
+0
-1
Lib/test/test_codecencodings_jp.py
Lib/test/test_codecencodings_jp.py
+0
-1
Lib/test/test_codecencodings_kr.py
Lib/test/test_codecencodings_kr.py
+0
-1
Lib/test/test_codecencodings_tw.py
Lib/test/test_codecencodings_tw.py
+0
-1
Lib/test/test_codecmaps_jp.py
Lib/test/test_codecmaps_jp.py
+0
-1
Lib/test/test_epoll.py
Lib/test/test_epoll.py
+0
-1
Lib/test/test_hmac.py
Lib/test/test_hmac.py
+0
-1
Lib/test/test_list.py
Lib/test/test_list.py
+1
-1
Lib/test/test_pow.py
Lib/test/test_pow.py
+1
-1
Lib/test/test_range.py
Lib/test/test_range.py
+1
-1
Lib/test/test_userdict.py
Lib/test/test_userdict.py
+1
-1
Lib/test/test_userlist.py
Lib/test/test_userlist.py
+1
-1
No files found.
Lib/test/test_charmapcodec.py
View file @
e4fbb020
...
@@ -9,7 +9,7 @@ Written by Marc-Andre Lemburg (mal@lemburg.com).
...
@@ -9,7 +9,7 @@ Written by Marc-Andre Lemburg (mal@lemburg.com).
"""
#"
"""
#"
import
test.support
,
unittest
import
unittest
import
codecs
import
codecs
...
...
Lib/test/test_codecencodings_cn.py
View file @
e4fbb020
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec encoding tests for PRC encodings.
# Codec encoding 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_codecencodings_hk.py
View file @
e4fbb020
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec encoding tests for HongKong encodings.
# Codec encoding 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_codecencodings_iso2022.py
View file @
e4fbb020
# Codec encoding tests for ISO 2022 encodings.
# Codec encoding tests for ISO 2022 encodings.
from
test
import
support
from
test
import
multibytecodec_support
from
test
import
multibytecodec_support
import
unittest
import
unittest
...
...
Lib/test/test_codecencodings_jp.py
View file @
e4fbb020
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec encoding tests for Japanese encodings.
# Codec encoding tests for Japanese encodings.
#
#
from
test
import
support
from
test
import
multibytecodec_support
from
test
import
multibytecodec_support
import
unittest
import
unittest
...
...
Lib/test/test_codecencodings_kr.py
View file @
e4fbb020
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec encoding tests for ROK encodings.
# Codec encoding 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_codecencodings_tw.py
View file @
e4fbb020
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec encoding tests for ROC encodings.
# Codec encoding 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_codecmaps_jp.py
View file @
e4fbb020
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
# Codec mapping tests for Japanese encodings
# Codec mapping tests for Japanese encodings
#
#
from
test
import
support
from
test
import
multibytecodec_support
from
test
import
multibytecodec_support
import
unittest
import
unittest
...
...
Lib/test/test_epoll.py
View file @
e4fbb020
...
@@ -28,7 +28,6 @@ import socket
...
@@ -28,7 +28,6 @@ import socket
import
time
import
time
import
unittest
import
unittest
from
test
import
support
if
not
hasattr
(
select
,
"epoll"
):
if
not
hasattr
(
select
,
"epoll"
):
raise
unittest
.
SkipTest
(
"test works only on Linux 2.6"
)
raise
unittest
.
SkipTest
(
"test works only on Linux 2.6"
)
...
...
Lib/test/test_hmac.py
View file @
e4fbb020
...
@@ -3,7 +3,6 @@ import hmac
...
@@ -3,7 +3,6 @@ import hmac
import
hashlib
import
hashlib
import
unittest
import
unittest
import
warnings
import
warnings
from
test
import
support
def
ignore_warning
(
func
):
def
ignore_warning
(
func
):
...
...
Lib/test/test_list.py
View file @
e4fbb020
import
sys
import
sys
from
test
import
support
,
list_tests
from
test
import
list_tests
import
pickle
import
pickle
import
unittest
import
unittest
...
...
Lib/test/test_pow.py
View file @
e4fbb020
import
test.support
,
unittest
import
unittest
class
PowTest
(
unittest
.
TestCase
):
class
PowTest
(
unittest
.
TestCase
):
...
...
Lib/test/test_range.py
View file @
e4fbb020
# Python test set -- built-in functions
# Python test set -- built-in functions
import
test.support
,
unittest
import
unittest
import
sys
import
sys
import
pickle
import
pickle
import
itertools
import
itertools
...
...
Lib/test/test_userdict.py
View file @
e4fbb020
# Check every path through every method of UserDict
# Check every path through every method of UserDict
from
test
import
support
,
mapping_tests
from
test
import
mapping_tests
import
unittest
import
unittest
import
collections
import
collections
...
...
Lib/test/test_userlist.py
View file @
e4fbb020
# Check every path through every method of UserList
# Check every path through every method of UserList
from
collections
import
UserList
from
collections
import
UserList
from
test
import
support
,
list_tests
from
test
import
list_tests
import
unittest
import
unittest
class
UserListTest
(
list_tests
.
CommonTest
):
class
UserListTest
(
list_tests
.
CommonTest
):
...
...
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