summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-11-19 05:18:51 (GMT)
committerGuido van Rossum <guido@python.org>2015-11-19 05:18:51 (GMT)
commit05e3090e3a886b86e8b498247c43a14729ae571c (patch)
tree1da8c50fdf878e9779c8e86a4ddee14ae11786e4 /Lib/test
parentbb7c57c6cdc9e36a9b5875f5bcfd52a8df10b7ba (diff)
downloadcpython-05e3090e3a886b86e8b498247c43a14729ae571c.zip
cpython-05e3090e3a886b86e8b498247c43a14729ae571c.tar.gz
cpython-05e3090e3a886b86e8b498247c43a14729ae571c.tar.bz2
Remove unused imports from test_typing.py.
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_typing.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py
index dc4c152..ae138c6 100644
--- a/Lib/test/test_typing.py
+++ b/Lib/test/test_typing.py
@@ -1,12 +1,7 @@
-from collections import namedtuple
import pickle
import re
import sys
from unittest import TestCase, main
-try:
- from unittest import mock
-except ImportError:
- import mock # 3rd party install, for PY3.2.
from typing import Any
from typing import TypeVar, AnyStr