Remove unused imports

This commit is contained in:
Takafumi Arakaki
2013-03-12 11:04:15 +01:00
parent c387bf06bc
commit c87d3dad52
3 changed files with 4 additions and 8 deletions

View File

@@ -7,15 +7,16 @@ import os
from os.path import abspath, dirname from os.path import abspath, dirname
import functools import functools
test_dir = dirname(abspath(__file__))
root_dir = dirname(test_dir)
import pytest import pytest
import jedi import jedi
from jedi._compatibility import is_py25 from jedi._compatibility import is_py25
test_dir = dirname(abspath(__file__))
root_dir = dirname(test_dir)
sample_int = 1 # This is used in completion/imports.py sample_int = 1 # This is used in completion/imports.py

View File

@@ -4,11 +4,8 @@ Refactoring tests work a little bit similar to Black Box tests. But the idea is
here to compare two versions of code. here to compare two versions of code.
""" """
from __future__ import with_statement from __future__ import with_statement
import sys
import os import os
import traceback
import re import re
import itertools
from jedi._compatibility import reduce from jedi._compatibility import reduce
import jedi import jedi

View File

@@ -1,8 +1,6 @@
import os import os
import re import re
import pytest
from . import base from . import base
from .run import \ from .run import \
TEST_COMPLETIONS, TEST_DEFINITIONS, TEST_ASSIGNMENTS, TEST_USAGES TEST_COMPLETIONS, TEST_DEFINITIONS, TEST_ASSIGNMENTS, TEST_USAGES