| Commit message (Expand) | Author | Age | Files | Lines |
| * | Function nodes can detect if they are decorated with subclasses of builtin de... | cpopa | 2014-05-07 | 1 | -2/+32 |
| * | Simplify the lookup for the metaclass; add comments for the YES node tests.ancestors | cpopa | 2014-04-30 | 1 | -6/+4 |
| * | Merge with default. | cpopa | 2014-04-29 | 1 | -0/+4 |
| |\ |
|
| | * | Add future imports to Module.future_imports. | Torsten Marek | 2014-04-25 | 1 | -0/+4 |
| * | | Look in ancestors when a class node doesn't use an explicitly defined metacla... | cpopa | 2014-04-25 | 1 | -4/+29 |
| |/ |
|
| * | Skip non-class bases. | cpopa | 2014-04-24 | 1 | -0/+2 |
| * | Skip the same infered nodes as the base class in _is_metaclass. Closes issue ... | cpopa | 2014-04-22 | 1 | -0/+2 |
| * | Add note in test regarding the .ancestors() fix. Check the _type of a base cl... | cpopa | 2014-04-15 | 1 | -0/+2 |
| * | Unwrap instances found in `.ancestors()`, by using their _proxied class. Don'... | cpopa | 2014-04-12 | 1 | -6/+36 |
| * | Merged logilab/astroid into default | Claudiu Popa | 2014-04-02 | 1 | -0/+8 |
| |\ |
|
| | * | Merged in flyingsheep/astroid (pull request #15) | Sylvain Th?nault | 2014-03-26 | 1 | -2/+25 |
| | |\ |
|
| | * | | fixed python 2 compatibility for BytesIO | Phil Schaf | 2013-11-25 | 1 | -1/+4 |
| | * | | added file_bytes to Module to allow file_stream to be retrieved from it | Phil Schaf | 2013-11-24 | 1 | -0/+5 |
| * | | | Do not print the traceback for SyntaxErrors. | cpopa | 2014-04-02 | 1 | -0/+2 |
| | |/
|/| |
|
| * | | Drop yield_from API, add a new YieldFrom node instead. | cpopa | 2014-03-04 | 1 | -2/+3 |
| * | | Use .infer. | cpopa | 2013-12-18 | 1 | -1/+1 |
| * | | Add Changelog entry regarding `metaclass`, add a new test for py3k. | cpopa | 2013-12-18 | 1 | -1/+1 |
| * | | Add tests. | cpopa | 2013-08-13 | 1 | -1/+1 |
| * | | Change metaclass discovery. | cpopa | 2013-08-13 | 1 | -10/+15 |
| * | | Return a string depicting the metaclass, not the metaclass itself. | cpopa | 2013-07-24 | 1 | -1/+4 |
| * | | Add support for metaclass for Python 3. | cpopa | 2013-07-24 | 1 | -1/+4 |
| * | | Add metaclass support for Class node. | cpopa | 2013-07-24 | 1 | -0/+11 |
| |/ |
|
| * | rename all astroid_from* method, introduced by sed, into ast_from* | Sylvain Th?nault | 2013-07-24 | 1 | -3/+3 |
| * | Add support for py3k's keyword only arguments | Julien Cristau | 2013-07-18 | 1 | -1/+1 |
| * | Properly recognize methods annotated with abc.abstract{property,method} | Torsten Marek | 2013-06-20 | 1 | -3/+16 |
| * | Make file_stream return a byte stream | Julien Cristau | 2013-06-19 | 1 | -1/+1 |
| * | set fromlineno for Argument nodes | Julien Cristau | 2013-06-18 | 1 | -0/+2 |
| * | rename the project astroid | David Douard | 2013-06-17 | 1 | -44/+44 |
| * | enhanced generator support. Closes #124340 | Sylvain Th?nault | 2013-04-11 | 1 | -2/+2 |
| * | import cleanups | Sylvain Th?nault | 2013-03-29 | 1 | -3/+3 |
| * | minor cleanups: drop copyright by me, update others to 2013, droip those in d... | Sylvain Th?nault | 2013-03-28 | 1 | -2/+0 |
| * | unify BUILTINS_NAME / BUILTINS_MODULE into astng.bases.BUILTINS | Sylvain Th?nault | 2013-03-28 | 1 | -8/+7 |
| * | [cleanup] don't call const_factory with astng nodes | Sylvain Th?nault | 2013-03-28 | 1 | -7/+6 |
| * | Fix inference for generator methods to correctly handle yields in lambdas. Cl... | Torsten Marek | 2013-03-27 | 1 | -1/+1 |
| * | fix function fromlineno when some decorator is splited on multiple lines. Clo... | Mark Gius | 2012-09-20 | 1 | -1/+2 |
| * | setup.py: properly add additional file during build instead of install. | Sylvain Th?nault | 2012-08-30 | 1 | -1/+1 |
| * | properly define file_encoding Module attribute. Closes #104041 | Sylvain Th?nault | 2012-08-29 | 1 | -0/+3 |
| * | use open rather than file as 2to3 miss it (probably because of the file class... | Sylvain Th?nault | 2012-01-19 | 1 | -1/+1 |
| * | closes #62295: avoid "OSError: Too many open files" | Sylvain Th?nault | 2011-12-08 | 1 | -0/+6 |
| * | Make sure that the name attribute on lambda nodes is defined, | Torsten Marek | 2011-12-08 | 1 | -2/+1 |
| * | copy context path when cloning inference context, else we may skip undesired ... | Sylvain Th?nault | 2011-09-29 | 1 | -18/+20 |
| * | cosmetic changes: update/fix copyright and comments, d-t-w | Sylvain Th?nault | 2011-09-27 | 1 | -2/+3 |
| * | py3k: __builtin__ module renamed to builtins, we should consider this to prop... | Sylvain Th?nault | 2011-07-08 | 1 | -5/+6 |
| * | test and fix relative import inference pb, detected with python 3 | Sylvain Th?nault | 2011-07-08 | 1 | -2/+2 |
| * | fix absolute import behaviour with python 2.7: it seems that absolute import ... | Sylvain Th?nault | 2011-07-08 | 1 | -2/+2 |
| * | closes #70565: absolute imports treated as relative (patch by Jacek Konieczny) | Sylvain Th?nault | 2011-07-08 | 1 | -0/+4 |
| * | remove some code no more necessary since we don't support anymore python < 2.5 | Sylvain Th?nault | 2011-01-05 | 1 | -2/+0 |
| * | cleanup : do more boot strapping in astng_boot_strapping | Emile Anclin | 2010-12-14 | 1 | -0/+3 |
| * | cleanup: move StmtMixin to Statement | Emile Anclin | 2010-12-02 | 1 | -3/+4 |
| * | cleanup: BaseClass is no more needed | Emile Anclin | 2010-12-02 | 1 | -1/+1 |