summaryrefslogtreecommitdiff
path: root/astroid/node_classes.py
Commit message (Expand)AuthorAgeFilesLines
* Move from % syntax to format or f-stringsPierre Sassoulas2021-02-171-4/+6
* Remove the # coding, since PEP3120 the default is UTF8Pierre Sassoulas2021-02-171-1/+0
* Update copyright noticehippo912021-02-151-2/+2
* ``is_generator`` correctly considers `Yield` nodes in `AugAssign` nodesClaudiu Popa2021-01-011-0/+5
* New copyright noticeshippo912020-12-271-1/+3
* Explicitly return None on certain functionsRaphael Gaschignard2020-10-281-1/+1
* Squash one-off inference utility functions to help reduce recursion errors (#...Bryce Guinta2020-06-221-5/+23
* Fix a crash caused by a lookup of a monkey-patched method (#803)Claudiu Popa2020-06-161-2/+1
* `FunctionDef.is_generator` properly handles `yield` nodes in `If` tests (#799)Claudiu Popa2020-06-091-0/+5
* `FunctionDef.is_generator` properly handles `yield` nodes in `While` testsClaudiu Popa2020-05-121-0/+5
* Fix the new violations of super-without-argumentsClaudiu Popa2020-05-121-31/+27
* Add missing copyright annotations for the past releasesClaudiu Popa2020-04-271-4/+8
* Add posonlyargs_annotations to Arguments.get_children()Claudiu Popa2020-03-281-0/+6
* Add posonlyargs_annotations to Arguments.as_string()Claudiu Popa2020-03-281-1/+7
* Call super() for EvaluatedObjectClaudiu Popa2020-03-101-3/+5
* Add a new EvaluatedObject containerClaudiu Popa2020-03-101-0/+34
* ``NodeNG.bool_value()`` gained an optional ``context`` parameterClaudiu Popa2020-03-051-5/+5
* Fix unbound local error caused by 061aaebea2be2d21831ef687cc4ba4a25d953c65Claudiu Popa2020-01-121-1/+1
* Can access positional only and keyword only argument type commentsAshley Whetter2020-01-111-0/+32
* ``nodes.Const.itered`` returns a list of ``Const`` nodes, not stringsClaudiu Popa2019-12-151-3/+3
* Allow inferring positional only arguments on Python 3.8Claudiu Popa2019-11-141-6/+8
* All type comments have as parent the corresponding `astroid` nodeClaudiu Popa2019-10-091-1/+3
* Remove NodeNG.nearest method (#692)kavins142019-09-101-27/+0
* Update method docstring (#690)kavins142019-09-081-6/+6
* Relax the spreading of defaults to both positional only and positional or key...Claudiu Popa2019-07-101-10/+4
* Disable legit errors for too many parametersClaudiu Popa2019-07-091-0/+3
* Add support for finding positional only arguments using the Arguments APIsClaudiu Popa2019-07-091-10/+15
* Introduce a new argument to `Arguments` for storing the positional only annot...Claudiu Popa2019-07-091-0/+13
* Add support for positional only arguments in astroid for python 3.8Claudiu Popa2019-07-091-1/+32
* Annotated AST follows PEP8 coding style when converted to string.Łukasz Rogalski2019-06-221-2/+4
* Add inference support to NamedExpr nodesClaudiu Popa2019-06-021-0/+4
* Add support for Python 3.8's `NamedExpr` nodes, which is part of assignment e...Claudiu Popa2019-06-011-0/+25
* Mark Ellipsis as a constant for Python 3.8Claudiu Popa2019-06-011-2/+5
* Can access per argument type comments (#667)Ashley Whetter2019-05-141-0/+16
* Improved builtin inference for ``tuple``, ``set``, ``frozenset``, ``list`` an...Claudiu Popa2019-03-281-4/+11
* Use a list to hold the statements to be filtered per node instead of keeping ...Claudiu Popa2019-03-041-6/+8
* The last except handler wins when inferring variables bound in an except hand...Claudiu Popa2019-03-031-2/+14
* Avoid statement deletion in the _filter_stmts method of the LookupMixin class...hippo912019-01-231-2/+10
* Add a method to the manager to retrieve the builtins moduleClaudiu Popa2019-01-191-1/+1
* Refactoring chained comparison (#636)hippo912019-01-131-2/+1
* Cache the result of get_assign_nodesClaudiu Popa2018-10-101-4/+4
* Let formatting be handled by blackClaudiu Popa2018-10-021-1/+2
* Initial formatting of astroidClaudiu Popa2018-10-021-280/+418
* Make sure that assign nodes can find ``yield`` statements in their valuesClaudiu Popa2018-08-101-0/+3
* Cut obsolete "explicit StopIteration" commentsNick Drozd2018-07-301-4/+0
* Spelling fixesVille Skyttä2018-07-241-3/+3
* Update the copyright noticesastroid-2.0Claudiu Popa2018-07-151-3/+18
* Don't allow max_inferable to be set by an environment variable.Claudiu Popa2018-07-061-1/+1
* Limit inference to a maximum of 100 results at a time to preventBryce Guinta2018-07-061-1/+3
* Fix inference for nested callsBryce Guinta2018-07-051-0/+2