summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_collections.py
diff options
context:
space:
mode:
authorSrinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి) <thatiparthysreenivas@gmail.com>2018-11-10 07:22:02 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2018-11-10 07:22:02 (GMT)
commitb9498e2367f21205ed2b9c172665ea6f0a218d27 (patch)
treef3b03cddd87e5c9c8315113efbea3854870f80b0 /Lib/test/test_collections.py
parent43a74abb3a87092a7fd6c71042eafb977d70d8e0 (diff)
downloadcpython-b9498e2367f21205ed2b9c172665ea6f0a218d27.zip
cpython-b9498e2367f21205ed2b9c172665ea6f0a218d27.tar.gz
cpython-b9498e2367f21205ed2b9c172665ea6f0a218d27.tar.bz2
bpo-35202: Remove unused imports in Lib directory. (GH-10446)
Diffstat (limited to 'Lib/test/test_collections.py')
-rw-r--r--Lib/test/test_collections.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_collections.py b/Lib/test/test_collections.py
index 200e027..e2ffaaa 100644
--- a/Lib/test/test_collections.py
+++ b/Lib/test/test_collections.py
@@ -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