summaryrefslogtreecommitdiff
path: root/astroid/modutils.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Minimal syntactic compatibility with Python 2.6. Closes issue #76.Claudiu Popa2015-01-271-2/+2
|
* Support Python installations where sys.prefix != sys.exec_prefix.Torsten Marek2014-11-271-8/+10
|
* Fix some NameErrors in modutils.Claudiu Popa2014-11-171-3/+3
|
* Close all the streams returned by imp.find_module.Claudiu Popa2014-11-171-2/+14
|
* Recognize modules loaded from $SYS_PREFIX\DLLs as standard library modules ↵Torsten Marek2014-11-161-0/+7
| | | | on Windows.
* Properly handle case-insensitive filesystems in modutils.Torsten Marek2014-11-161-47/+51
|
* Never load C extensions that are not from the standard library and also ↵Torsten Marek2014-11-091-36/+43
| | | | | | never load any compiled Python files. Fixes pylint issue #347.
* Move all astroid modules into a its own directory, which is now the package.Torsten Marek2014-11-081-0/+638
python setup.py develop now works.