Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Initial formatting of astroid | Claudiu Popa | 2018-10-02 | 1 | -10/+17 |
| | |||||
* | Update the copyright noticesastroid-2.0 | Claudiu Popa | 2018-07-15 | 1 | -2/+5 |
| | |||||
* | Keep f-strings out of here for now, we need 3.4 and 3.5 as well | Claudiu Popa | 2018-05-31 | 1 | -1/+3 |
| | |||||
* | Remove reraise() in favour of using raise..from | Claudiu Popa | 2018-05-31 | 1 | -3/+2 |
| | |||||
* | pyupgrade (#549) | Anthony Sottile | 2018-05-22 | 1 | -1/+0 |
| | |||||
* | Remove occurrences of no-else-return and consider-using-ternary | Claudiu Popa | 2016-12-18 | 1 | -11/+11 |
| | |||||
* | Even more granular copyrights (thanks to copyrite) | Claudiu Popa | 2016-07-22 | 1 | -2/+4 |
| | |||||
* | Keep a consistent copyright notice across the board. | Claudiu Popa | 2016-07-19 | 1 | -0/+2 |
| | |||||
* | New function, astroid.extract_node, exported out from astroid.test_utils. | Claudiu Popa | 2016-06-29 | 1 | -166/+0 |
| | |||||
* | Fix typos | Jakub Wilk | 2016-06-02 | 1 | -1/+1 |
| | |||||
* | Convert all files to new license header | Ceridwen | 2016-05-16 | 1 | -0/+3 |
| | |||||
* | Cleanup pylint's warnings over astroid codebase | Claudiu Popa | 2015-12-14 | 1 | -3/+5 |
| | | | | | | | | | | 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. | ||||
* | Enable the warnings in tests through a context manager | Claudiu Popa | 2015-12-11 | 1 | -0/+14 |
| | | | | | | | | Previously, we were enabling blindly all the warnings in tests files through `warnings.simplefilter`, which had the side effect of not taking into account the values of the -W flag. This meant that warnings which should have been silenced, weren't, leading to a huge output when running the tests with Python 3.5. | ||||
* | Add helper function for reraising exceptions | Ceridwen | 2015-09-21 | 1 | -5/+4 |
| | |||||
* | Use six.reraise to avoid losing tracebacks for simple cases | Ceridwen | 2015-09-21 | 1 | -1/+5 |
| | |||||
* | Remove debug statements | Ceridwen | 2015-08-21 | 1 | -6/+0 |
| | |||||
* | Fix isinstance/proxy bug by changing from lazy-object-proxy to wrapt and ↵ | Ceridwen | 2015-07-11 | 1 | -1/+0 |
| | | | | minor fixes | ||||
* | Merge logilab/astroid again | Ceridwen | 2015-07-11 | 1 | -17/+1 |
|\ | |||||
| * | Fix pylint issues. | Claudiu Popa | 2015-07-11 | 1 | -1/+0 |
| | | |||||
| * | Add a new convenience API, `astroid.parse`. | Claudiu Popa | 2015-07-11 | 1 | -16/+1 |
| | | | | | | | | | | | | This API can be used to retrieve an astroid AST from a source code string, similar to how ast.parse can be used to obtain a Python AST from a source string. This is the test_utils.build_module promoted to a public API. | ||||
* | | Node constructors almost finished except for two bugs | Ceridwen | 2015-07-08 | 1 | -4/+10 |
|/ | |||||
* | Merge all test data into a single package per Python version. | Torsten Marek | 2014-11-09 | 1 | -5/+7 |
| | | | | | | | | | Also modernized a lot of test code. This makes it possible to run the tests from both the base directory of the project as well as the astroid package. Since the packages have the same name for Python 2 and 3, there is less version-dependent code in the tests. | ||||
* | Fix some of the issues around running test discover from the base directory ↵ | Torsten Marek | 2014-11-09 | 1 | -0/+3 |
| | | | | of the project. | ||||
* | Move all astroid modules into a its own directory, which is now the package. | Torsten Marek | 2014-11-08 | 1 | -0/+213 |
python setup.py develop now works. |