diff options
author | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2014-07-23 17:43:52 +0200 |
---|---|---|
committer | Sylvain Th?nault <sylvain.thenault@logilab.fr> | 2014-07-23 17:43:52 +0200 |
commit | c141ccdb55553bc35d38874826a0304df7f96596 (patch) | |
tree | fca107b339a29de5a7fd0cc755f35a1f9aad5699 /utils.py | |
parent | c556997d7814f883a0b9571e724f33d0168b450b (diff) | |
download | pylint-c141ccdb55553bc35d38874826a0304df7f96596.tar.gz |
import modutils from astroid, it has been backported there
Diffstat (limited to 'utils.py')
-rw-r--r-- | utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -25,13 +25,13 @@ from warnings import warn from os.path import dirname, basename, splitext, exists, isdir, join, normpath from logilab.common.interface import implements -from logilab.common.modutils import modpath_from_file, get_module_files, \ - file_from_modpath, load_module_from_file from logilab.common.textutils import normalize_text from logilab.common.configuration import rest_format_section from logilab.common.ureports import Section from astroid import nodes, Module +from astroid.modutils import modpath_from_file, get_module_files, \ + file_from_modpath, load_module_from_file from pylint.interfaces import IRawChecker, ITokenChecker |