From 05e3090e3a886b86e8b498247c43a14729ae571c Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 18 Nov 2015 21:18:51 -0800 Subject: [PATCH] Remove unused imports from test_typing.py. --- Lib/test/test_typing.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py index dc4c1525af4..ae138c65989 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