summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Change indentation of unittest_raw_building.py tab to space.devAndroWiiid2013-11-041-38/+38
|
* Update unittest_manager and add some tests for raw_building.py file.AndroWiiid2013-10-292-7/+53
|
* Created new branch devPaligot G?rard2013-10-240-0/+0
|
* Add some tests for AstroidManager class in unittest_manager.pyAndroWiiid2013-10-241-20/+104
|
* Added tag astroid-debian-version-1.0.1-1 for changeset 0f3825899d58Sylvain Th?nault2013-10-180-0/+0
|
* Added tag astroid-version-1.0.1 for changeset f67f24131b3aastroid-debian-version-1.0.1-1Sylvain Th?nault2013-10-180-0/+0
|
* 1.0.1astroid-version-1.0.1Sylvain Th?nault2013-10-183-2/+17
|
* fix some test failures with pypy platform (one remaining)Sylvain Th?nault2013-10-182-4/+12
|
* get back gobject introspection from pylint-brainSylvain Th?nault2013-10-181-0/+147
|
* backport pylint fix on setup.py for py3k windows/cross-compiliation install ↵Sylvain Th?nault2013-10-041-9/+3
| | | | issue
* fix typo in setup.pySylvain Th?nault2013-10-041-1/+1
|
* backport fix done by Tobias Rzepka on pylint for python3 install on win32 ↵Sylvain Th?nault2013-10-032-2/+11
| | | | platforms
* fix error in namedtuple inference, we should add an astng class node ↵Sylvain Th?nault2013-07-311-1/+1
| | | | *instance* in .bases
* Added tag astroid-debian-version-1.0.0-1 for changeset aeb398869afcSylvain Th?nault2013-07-300-0/+0
|
* Added tag astroid-version-1.0.0 for changeset 1d6914a1a1a0astroid-debian-version-1.0.0-1Sylvain Th?nault2013-07-300-0/+0
|
* [debian] fix rules (no more a logilab'subpackageastroid-version-1.0.0Sylvain Th?nault2013-07-291-8/+4
|
* prepare astroid 1.0Sylvain Th?nault2013-07-294-328/+10
|
* [doc] Add atr's notes on inference and some TODOsAnthony Truchet2013-07-293-4/+105
|
* [doc] Setup Sphinx for documenting Astroid.Anthony Truchet2013-06-266-0/+543
|
* backport pylint-brain modules (more hashlib description)Sylvain Th?nault2013-07-241-12/+8
|
* Update some function definitions in py2stdlib's hashlib stub moduleTorsten Marek2013-07-244-5/+47
| | | | | | and make sure AST transforms without a predicate always match. Test all this in a new testcase.
* rename all astroid_from* method, introduced by sed, into ast_from*Sylvain Th?nault2013-07-246-38/+38
|
* Add support for py3k's keyword only argumentsJulien Cristau2013-07-184-3/+31
| | | | PEP 3102
* Fix format_args when there are no positional argumentsJulien Cristau2013-07-181-1/+3
| | | | | When formatting arguments, don't output an extra leading comma if the function has no positional arguments.
* Properly recognize methods annotated with abc.abstract{property,method}Torsten Marek2013-06-203-3/+43
| | | | as abstract.
* Allow selecting several statements/expressions in test_utils.extract_node.Torsten Marek2013-06-201-29/+38
|
* Handle python3.3's With nodesJulien Cristau2013-06-204-19/+47
| | | | | Change With nodes to have a list of (expr, var) items as in python 3.3's ast.
* rebuilder: fix handling of python3.3's Try ast nodesJulien Cristau2013-06-191-4/+4
| | | | | We were setting the wrong parents, which upset pylint. Fixes https://bitbucket.org/logilab/pylint/issue/10/pylint-028-throws-an-exception-after
* Fix language in a couple of error messagesJulien Cristau2013-06-191-2/+2
|
* Make file_stream return a byte streamJulien Cristau2013-06-191-1/+1
| | | | Users get to choose the encoding to decode with.
* set fromlineno for Argument nodesJulien Cristau2013-06-181-0/+2
| | | | | | decorated functions get their fromlineno attribute adjusted, but on python3, where argument nodes don't have a lineno, the argument nodes still had the old line information.
* Review documentation for the new extensions API.Torsten Marek2013-06-181-10/+13
|
* fix inference, some node classes have extra arguments there (eg import nodes)Sylvain Th?nault2013-06-181-3/+3
|
* start some documentation for the new transformation APISylvain Th?nault2013-06-181-0/+28
|
* namedtuple support using extended transformation function features. Closes #8766Sylvain Th?nault2013-06-183-11/+65
|
* [transforms] extended transformation API helpersSylvain Th?nault2013-06-181-0/+39
| | | | | | | * `AsStringRegexpPredicate`, predicate to use regexp on node.as_string result * `inference_tip`, generic transform function to ease registration of custom inference function
* [transforms] allow transformation functions on any nodes, not only modulesSylvain Th?nault2013-06-186-14/+47
|
* [inference] introduce (but not use it yet) explicit inference for some node ↵Sylvain Th?nault2013-06-183-27/+49
| | | | instances
* [rebuilder] visit_module is a particular visit function (main entry point), ↵Sylvain Th?nault2013-06-181-10/+10
| | | | move it on top
* work on thread safetySylvain Th?nault2013-06-182-9/+5
| | | | to start with, rebuilder should not be a class attribute
* Fix test_generator_attributes for python3Julien Cristau2013-06-171-1/+4
| | | | The next() method was renamed __next__()
* Added the test_utils module for building ASTs and extracting deeply nested ↵Torsten Marek2013-06-182-0/+176
| | | | nodes for easier testing.
* rebuilder: set tolineno for 'except' blocks on python 3.3Julien Cristau2013-06-171-0/+1
| | | | | | | The rewriting of Try node into TryFinally+TryExcept wasn't setting the end line for the except block. Fixes test_block_range.
* rename the project astroidDavid Douard2013-06-1743-1090/+1100
|
* [pkg] remove lenny and intrepid debian packagingDavid Douard2013-06-174-178/+0
|
* Fix unittest that was broken due to a change in pylint (BaseTokenChecker -> ↵Torsten Marek2013-06-171-1/+1
| | | | BaseRawChecker).
* [pgkinfo] update project's url to bitbucket and kill deprecated ftpSylvain Th?nault2013-04-251-2/+1
|
* backport stableSylvain Th?nault2013-04-250-0/+0
|\
* | Added tag logilab-astng-debian-version-0.24.3-1 for changeset c39e816972bcstableSylvain Th?nault2013-04-170-0/+0
| |
* | Added tag logilab-astng-version-0.24.3 for changeset a4a9ed0f8a0clogilab-astng-debian-version-0.24.3-1Sylvain Th?nault2013-04-170-0/+0
| |