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
b9498e23
Commit
b9498e23
authored
Nov 10, 2018
by
Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)
Committed by
Serhiy Storchaka
Nov 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-35202: Remove unused imports in Lib directory. (GH-10446)
parent
43a74abb
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
0 additions
and
9 deletions
+0
-9
Lib/lib2to3/pgen2/driver.py
Lib/lib2to3/pgen2/driver.py
+0
-1
Lib/lib2to3/pgen2/grammar.py
Lib/lib2to3/pgen2/grammar.py
+0
-1
Lib/multiprocessing/popen_fork.py
Lib/multiprocessing/popen_fork.py
+0
-1
Lib/test/test_collections.py
Lib/test/test_collections.py
+0
-2
Lib/test/test_queue.py
Lib/test/test_queue.py
+0
-2
Lib/test/test_sys.py
Lib/test/test_sys.py
+0
-1
Lib/test/test_thread.py
Lib/test/test_thread.py
+0
-1
No files found.
Lib/lib2to3/pgen2/driver.py
View file @
b9498e23
...
...
@@ -16,7 +16,6 @@ __author__ = "Guido van Rossum <guido@python.org>"
__all__
=
[
"Driver"
,
"load_grammar"
]
# Python imports
import
codecs
import
io
import
os
import
logging
...
...
Lib/lib2to3/pgen2/grammar.py
View file @
b9498e23
...
...
@@ -13,7 +13,6 @@ fallback token code OP, but the parser needs the actual token code.
"""
# Python imports
import
collections
import
pickle
# Local imports
...
...
Lib/multiprocessing/popen_fork.py
View file @
b9498e23
import
os
import
sys
import
signal
from
.
import
util
...
...
Lib/test/test_collections.py
View file @
b9498e23
...
...
@@ -3,11 +3,9 @@
import
collections
import
copy
import
doctest
import
keyword
import
operator
import
pickle
from
random
import
choice
,
randrange
import
re
import
string
import
sys
from
test
import
support
...
...
Lib/test/test_queue.py
View file @
b9498e23
# Some simple queue module tests, plus some failure conditions
# to ensure the Queue locks remain stable.
import
collections
import
itertools
import
queue
import
random
import
sys
import
threading
import
time
import
unittest
...
...
Lib/test/test_sys.py
View file @
b9498e23
...
...
@@ -10,7 +10,6 @@ import codecs
import
gc
import
sysconfig
import
locale
import
threading
# count the number of test runs, used to create unique
# strings to intern in test_intern()
...
...
Lib/test/test_thread.py
View file @
b9498e23
...
...
@@ -4,7 +4,6 @@ import random
from
test
import
support
import
_thread
as
thread
import
time
import
sys
import
weakref
from
test
import
lock_tests
...
...
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