summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Bump version to 1.2.1.astroid-1.2.1cpopa2014-08-242-2/+3
* Guard against infinite recursion in _is_metaclass.Torsten Marek2014-08-221-2/+8
* Do not use deprecated assertion method.Torsten Marek2014-08-221-1/+1
* Simplify brain module for the Python stdlib, but make sure that inference sti...Torsten Marek2014-08-222-27/+18
* Don't crash when trying to infer unbound object.__new__ call. Closes issue #11.cpopa2014-08-213-2/+20
* Fix an infinite loop in the inference, by returning a copy of instance attrib...cpopa2014-08-203-1/+36
* Merge heads.cpopa2014-08-134-24/+104
|\
| * The inference engine handles binary operations (add, mul etc.) between instan...cpopa2014-08-134-24/+104
* | Support iterable of tuples as well as iterable of names.cpopa2014-08-131-4/+12
|/
* Inference of the functional form of the enums takes into consideration the va...cpopa2014-08-132-5/+29
* Name inference will lookup in the parent function of the current scope, in ca...cpopa2014-08-113-1/+48
* enum members knows about the methods from the enum class.cpopa2014-08-082-0/+4
* namedtuple inference knows about '_fields' attribute.cpopa2014-08-042-0/+4
* Set the parent of vararg and kwarg nodes when inferring them. Closes issue #43.cpopa2014-07-293-2/+29
* Fix a crash occurred when inferring decorator call chain. Closes issue #42.cpopa2014-07-283-1/+23
* Added a short document outlining the release process.Torsten Marek2014-07-251-0/+23
* Added tag astroid-1.2 for changeset 59b1c5e1bd8dTorsten Marek2014-07-250-0/+0
* Bump version of astroid to 1.2 for the upcoming release.astroid-1.2Torsten Marek2014-07-252-2/+2
* pylint source codeSylvain Th?nault2014-07-2516-143/+152
* Fix trailing whitespace.cpopa2014-07-251-1/+1
* Use the same representation from the definition time for mocked enums.cpopa2014-07-251-6/+5
* Don't break of the first unknown basename.cpopa2014-07-251-1/+1
* Add support in pylint-brain for understanding enum classes.cpopa2014-07-252-0/+42
* Return YES if the bases cannot be inferred for a metaclass invocation, until ...Torsten Marek2014-07-251-1/+5
* Backport updates from pylint-brain.cpopa2014-07-251-47/+81
* [modutils] Use a cache when abspathing sys.path for file_from_modpath.Eevee (Alex Munroe)2014-07-251-4/+18
* Oups, fix a mistake.cpopa2014-07-251-1/+1
* Skip the test either if the platform is Windows or if we are running through ...cpopa2014-07-251-4/+6
* Skip a test on Windows and Python 3.cpopa2014-07-251-2/+4
* Fix.cpopa2014-07-251-1/+1
* Don't use 0 and 1 anymore.cpopa2014-07-251-4/+4
* Run the tests in non-verbose mode again.Torsten Marek2014-07-241-1/+1
* Fix the test order issue by clearing the cache once more after unittest_regrt...Torsten Marek2014-07-243-4/+4
* Make astroid compatible with Python 2.5 again.Torsten Marek2014-07-241-0/+1
* Use os.path.sep instead of hardcoding the separator.cpopa2014-07-241-2/+2
* Enable verbose output to debug test failure on drone.io.Torsten Marek2014-07-241-1/+1
* Function nodes can detect decorator call chain and see if they are decorated ...cpopa2014-07-243-1/+94
* Return new classes when inferring calls to type(name, bases, ns) and its subt...Torsten Marek2014-07-243-1/+40
* Fix names grabed using wildcard import in "absolute import mode"Sylvain Th?nault2014-07-248-6/+27
* restore the printSylvain Th?nault2014-07-241-0/+1
* more test fixes to avoid inter-dependency issuesSylvain Th?nault2014-07-245-12/+16
* temporarily add some prints to diagnose the drone.io failureSylvain Th?nault2014-07-242-0/+4
* attempt to fix a failure only occuring on the drone.io platformSylvain Th?nault2014-07-242-1/+7
* fix typoSylvain Th?nault2014-07-241-3/+3
* cleanup and fix modutils tests (among other, logilab.common.modutils was stil...Sylvain Th?nault2014-07-244-61/+65
* Use the with statement to prevent resource warnings.cpopa2014-07-241-3/+2
* backport (most of) logilab.common.modutils and related tests into astroid itselfSylvain Th?nault2014-07-2318-41/+955
* ASTWalker has been removed from the inheritance tree on the pylint sideSylvain Th?nault2014-07-231-1/+1
* Cleanup.cpopa2014-07-131-10/+9
* Expose function annotation to astroid. `Arguments` node exposes 'varargannota...cpopa2014-07-135-12/+99