Remove unused imports from test_typing.py.

This commit is contained in:
Guido van Rossum 2015-11-18 21:18:51 -08:00
parent bb7c57c6cd
commit 05e3090e3a
1 changed files with 0 additions and 5 deletions

View File

@ -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