Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Even more granular copyrights (thanks to copyrite) | Claudiu Popa | 2016-07-22 | 1 | -2/+3 |
| | |||||
* | Keep a consistent copyright notice across the board. | Claudiu Popa | 2016-07-19 | 1 | -0/+2 |
| | |||||
* | Convert all files to new license header | Ceridwen | 2016-05-17 | 1 | -119/+104 |
| | |||||
* | Changed the way how parameters are being built | Claudiu Popa | 2016-02-13 | 1 | -9/+12 |
| | | | | | | | | | | | | | | | The old way consisted in having the parameter names, their defaults and their annotations separated in different components of the Arguments node. We introduced a new Param node, which holds the name of a parameter, its default value and its annotation. If any of the last two values are missing, then that slot will be filled with a new node kind, Empty, which is used for specifying the lack of something (None could have been used instead, but that means having non-AST nodes in the Arguments node). We're also having support for positional only arguments, for the moment only in raw_building. Close #215 | ||||
* | Look in keyword-only annotations when determining the scope of annotations. | Claudiu Popa | 2016-01-25 | 1 | -0/+1 |
| | |||||
* | Add a workaround for singledispatch raising AttributeError on old-style classes | Ceridwen | 2015-11-16 | 1 | -0/+2 |
| | |||||
* | .scope() returns the proper scope for Arguments's default values, function ↵ | Claudiu Popa | 2015-11-10 | 1 | -4/+69 |
| | | | | annotations and comprehensions. Closes issue #211. | ||||
* | Move the implementation of scopes into interpreter.scopes, which makes it ↵ | Claudiu Popa | 2015-11-01 | 1 | -0/+48 |
more amenable to changes. |