remove 'six' name except importing line.

This commit is contained in:
Takayuki Shimizukawa
2014-04-30 21:30:46 +09:00
parent f31d9113ff
commit 1e58062692
44 changed files with 126 additions and 143 deletions

View File

@@ -72,7 +72,7 @@ import token
import zipimport
from socket import gethostname
import six
from six import string_types
# 2. IMPLEMENTATION
@@ -841,7 +841,7 @@ class coverage:
# On windows, the shell doesn't expand wildcards. Do it here.
globbed = []
for morf in morfs:
if isinstance(morf, six.string_types):
if isinstance(morf, string_types):
globbed.extend(glob.glob(morf))
else:
globbed.append(morf)