Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Add lib_pypy into the list of standard library modules for PyPy | Claudiu Popa | 2015-12-15 | 1 | -0/+3 | |
| | | | | | | Unfortunately it is not detected in any way by distutils.sysconfig.get_python_lib. This can detect datetime as a builtin module on PyPy. | |||||
* | Disable errors caused by a custom version of distutils, created by virtualenv. | Claudiu Popa | 2015-12-14 | 1 | -1/+6 | |
| | ||||||
* | Cleanup pylint's warnings over astroid codebase | Claudiu Popa | 2015-12-14 | 1 | -8/+4 | |
| | | | | | | | | | | Some of the messages were disabled in pylintrc, since they're not very useful for our case. Other parameters, such as the number of arguments / statements / attributes etc were configured so that they won't be too restrictive for our codebase, since making the code to respect them right now requires too much development changes, which is not justified by the end result. Closes issue #284. | |||||
* | Remove doctype and future imports which aren't useful. | Claudiu Popa | 2015-10-11 | 1 | -1/+0 | |
| | ||||||
* | Remove the use of scandir. Unfortunately it's supported only by CPython. | Claudiu Popa | 2015-07-26 | 1 | -2/+1 | |
| | ||||||
* | Merge | Claudiu Popa | 2015-07-25 | 1 | -7/+16 | |
|\ | ||||||
| * | Get rid of logilab.common in doc example. | Florian Bruhin | 2015-07-25 | 1 | -2/+2 | |
| | | | | | | | | | | --HG-- branch : no-logilab-common | |||||
| * | Fix get_module_files documentation in modutils. | Florian Bruhin | 2015-07-25 | 1 | -3/+2 | |
| | | | | | | | | | | --HG-- branch : no-logilab-common | |||||
| * | get rid of logilab.common in modutils. | Florian Bruhin | 2015-07-25 | 1 | -2/+12 | |
| | | | | | | | | | | --HG-- branch : no-logilab-common | |||||
* | | Remove the useless __docformat__ variable. | Claudiu Popa | 2015-07-23 | 1 | -2/+0 | |
| | | ||||||
* | | CR fixes | Radosław Ganczarek | 2015-07-25 | 1 | -3/+2 | |
| | | ||||||
* | | Proper argument name | Radosław Ganczarek | 2015-07-25 | 1 | -4/+4 | |
| | | ||||||
* | | Add option to search for all Python files in get_module_files | Radosław Ganczarek | 2015-07-25 | 1 | -3/+9 | |
|/ | ||||||
* | Fix pylint warnings. | Claudiu Popa | 2015-07-02 | 1 | -3/+3 | |
| | ||||||
* | Update modutils.py from logilab.common and add support for namespace packages | Claudiu Popa | 2015-07-02 | 1 | -13/+30 | |
| | | | | | | This patch is mostly a backport from logilab.common. The addition is the support for pkg_resources.declare_namespace, which created a good deal of problems so far with regard to virtualenvs. | |||||
* | Fix pylint warnings over astroid, update the list of disabled messages in ↵ | Claudiu Popa | 2015-05-19 | 1 | -2/+4 | |
| | | | | pylintrc. | |||||
* | Add some fixes which enhances the Jython support. | Claudiu Popa | 2015-03-30 | 1 | -3/+21 | |
| | | | | | | | The fix mostly includes updates to modutils, which is modified in order to properly lookup paths from live objects, which ends in $py.class, not pyc as for Python 2, Closes issue #83. | |||||
* | Make modutils._search_zip thread safe. | Claudiu Popa | 2015-03-15 | 1 | -1/+1 | |
| | | | | | | The function was iterating on sys.path_importer_cache.items(), which gets modified sometimes when using multiple threads. This patch wraps the call to .items() in a list() call. | |||||
* | Minimal syntactic compatibility with Python 2.6. Closes issue #76. | Claudiu Popa | 2015-01-27 | 1 | -2/+2 | |
| | ||||||
* | Support Python installations where sys.prefix != sys.exec_prefix. | Torsten Marek | 2014-11-27 | 1 | -8/+10 | |
| | ||||||
* | Fix some NameErrors in modutils. | Claudiu Popa | 2014-11-17 | 1 | -3/+3 | |
| | ||||||
* | Close all the streams returned by imp.find_module. | Claudiu Popa | 2014-11-17 | 1 | -2/+14 | |
| | ||||||
* | Recognize modules loaded from $SYS_PREFIX\DLLs as standard library modules ↵ | Torsten Marek | 2014-11-16 | 1 | -0/+7 | |
| | | | | on Windows. | |||||
* | Properly handle case-insensitive filesystems in modutils. | Torsten Marek | 2014-11-16 | 1 | -47/+51 | |
| | ||||||
* | Never load C extensions that are not from the standard library and also ↵ | Torsten Marek | 2014-11-09 | 1 | -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 Marek | 2014-11-08 | 1 | -0/+638 | |
python setup.py develop now works. |