| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Move the iteration inside the try branch, which makes the quickstart redundant | Claudiu Popa | 2017-03-12 | 1 | -20/+3 |
* | Quickstart _infer_binary_operation to raise errors that occur during startup. | Calen Pennington | 2017-03-12 | 1 | -0/+16 |
* | Move the catching of AttributeInferenceError where .getitem() is called, in i... | Claudiu Popa | 2017-03-01 | 1 | -0/+1 |
* | Raise InferenceError in Class.getitem. Close #395 | Claudiu Popa | 2017-03-01 | 1 | -1/+1 |
* | Infer starred expressions in tuple, list, set and dict literals (#396) | Ćukasz Rogalski | 2017-02-14 | 1 | -4/+69 |
* | Fix the discrepancies between master and 2.0 code | Claudiu Popa | 2016-12-30 | 1 | -7/+3 |
* | Add support for binary operations between classes. | Claudiu Popa | 2016-12-30 | 1 | -1/+6 |
* | Add a new mechanism for retrieving the special methods. | Claudiu Popa | 2016-12-30 | 1 | -1/+8 |
* | Add support for inferring unary binary op for classes | Claudiu Popa | 2016-12-30 | 1 | -1/+1 |
* | Let the type error propagate as an AstroidTypeError. | Claudiu Popa | 2016-12-03 | 1 | -1/+3 |
* | getitem() method accepts nodes now, instead of Python objects. | Claudiu Popa | 2016-11-21 | 1 | -43/+9 |
* | Fix some pylint errors over the code base. | Claudiu Popa | 2016-08-24 | 1 | -1/+1 |
* | Even more granular copyrights (thanks to copyrite) | Claudiu Popa | 2016-07-22 | 1 | -2/+5 |
* | Keep a consistent copyright notice across the board. | Claudiu Popa | 2016-07-19 | 1 | -0/+2 |
* | Now is_subtype / is_supertype raises an internal exception when a type hierar... | Claudiu Popa | 2016-06-03 | 1 | -9/+21 |
* | Fix typos | Jakub Wilk | 2016-06-02 | 1 | -2/+2 |
* | Convert all files to new license header | Ceridwen | 2016-05-16 | 1 | -17/+3 |
* | Improve inference with regard redefinition of values in subclasses | Claudiu Popa | 2016-04-26 | 1 | -0/+11 |
* | Set the parent to the BinOp node when inferring nodes created during binary o... | Claudiu Popa | 2016-02-16 | 1 | -34/+32 |
* | Cleanup pylint's warnings over astroid codebase | Claudiu Popa | 2015-12-14 | 1 | -6/+5 |
* | AstroidBuildingException is now AstroidBuildingError. | Claudiu Popa | 2015-12-06 | 1 | -2/+2 |
* | Add two new exceptions, AstroidImportError and AstroidSyntaxError. | Claudiu Popa | 2015-12-06 | 1 | -6/+18 |
* | Merge upstream changes | Ceridwen | 2015-11-06 | 1 | -1/+1 |
|\ |
|
| * | Rename Uninferable and instantiate_class, fix broken tests, improve | Ceridwen | 2015-11-06 | 1 | -38/+38 |
* | | Rename Uninferable and instatiate_class | Ceridwen | 2015-11-06 | 1 | -38/+38 |
* | | Add structured exceptions to decorators and remaining functions. | Ceridwen | 2015-11-06 | 1 | -7/+21 |
* | | This bookmark adds structured exceptions to astroid. | Ceridwen | 2015-11-02 | 1 | -26/+39 |
|/ |
|
* | Merged in dmand/astroid/binop-inference-fix (pull request #92) | Claudiu Popa | 2015-10-23 | 1 | -7/+7 |
|\ |
|
| * | Fix binary operation inference crash by using cloned contexts | Dmitry Pribysh | 2015-10-21 | 1 | -7/+7 |
* | | Add support for indexing containers with instances which provides an __index_... | Claudiu Popa | 2015-10-22 | 1 | -0/+4 |
* | | Create a call context when inferring unary operands on instances. | Claudiu Popa | 2015-10-22 | 1 | -0/+3 |
|/ |
|
* | Remove doctype and future imports which aren't useful. | Claudiu Popa | 2015-10-11 | 1 | -2/+0 |
* | Move decorators from bases to decorators module. | Claudiu Popa | 2015-10-11 | 1 | -19/+20 |
* | Don't wrap instance's arguments into a Const, instead let the original index ... | Claudiu Popa | 2015-10-03 | 1 | -19/+16 |
* | Fix a crash which occurred when inferring unary operands which yielded object... | Claudiu Popa | 2015-10-03 | 1 | -0/+2 |
* | Fix pylint errors. | Claudiu Popa | 2015-09-26 | 1 | -2/+0 |
* | Merged in ceridwenv/astroid (pull request #88) | Claudiu Popa | 2015-09-26 | 1 | -4/+4 |
|\ |
|
| * | Add helper function for reraising exceptions | Ceridwen | 2015-09-21 | 1 | -13/+4 |
| * | Use six.reraise to avoid losing tracebacks for simple cases | Ceridwen | 2015-09-21 | 1 | -4/+13 |
* | | Fix a crash when inferring subscripts which returned the same object all the ... | Claudiu Popa | 2015-09-25 | 1 | -3/+6 |
|/ |
|
* | Improve the understanding of arguments | Claudiu Popa | 2015-09-09 | 1 | -0/+1 |
* | First pass of the Python 3.5 support. | Claudiu Popa | 2015-09-07 | 1 | -3/+1 |
* | Disable the no-value-for-parameter message for now, since it's a false positi... | Claudiu Popa | 2015-08-26 | 1 | -0/+2 |
* | Last merge (hopefully) and all bugs fixed but one | Ceridwen | 2015-08-21 | 1 | -17/+71 |
|\ |
|
| * | Understand slices of tuples, lists, strings and instances with support for sl... | Claudiu Popa | 2015-08-21 | 1 | -17/+71 |
* | | Add tests for aliases | Ceridwen | 2015-08-21 | 1 | -2/+4 |
* | | More fixes for bugs introduced during merge | Ceridwen | 2015-08-18 | 1 | -13/+15 |
* | | Fix most obvious errors intorduced by the latest merge | Ceridwen | 2015-08-14 | 1 | -4/+4 |
* | | Merge main into default | Ceridwen | 2015-08-14 | 1 | -210/+129 |
|\ \
| |/ |
|
| * | Big cleanup across the entire project | Claudiu Popa | 2015-08-12 | 1 | -70/+76 |