summaryrefslogtreecommitdiff
path: root/astroid
Commit message (Expand)AuthorAgeFilesLines
* Lose an indentation level in ancestors() by continuing if recursing wasn't pa...Claudiu Popa2018-10-111-9/+10
* Update some leftover docstringsClaudiu Popa2018-10-111-5/+9
* Use yield fromClaudiu Popa2018-10-102-4/+2
* YES is gone, we're using Uninferable for quite some time nowClaudiu Popa2018-10-102-5/+1
* Remove Python 2 branchesClaudiu Popa2018-10-102-26/+14
* Cache the result of get_assign_nodesClaudiu Popa2018-10-103-9/+17
* Use generators for string joining instead of creating temporary listsClaudiu Popa2018-10-102-17/+17
* Add some caching to the transforms and skip non nodes in visit_genericClaudiu Popa2018-10-101-3/+10
* Use None as a sentinelClaudiu Popa2018-10-101-1/+1
* Remove some unneeded comments and use yield fromClaudiu Popa2018-10-101-6/+2
* Use itertools.chain to join multiple generators togetherClaudiu Popa2018-10-101-3/+8
* Use a generator expression for _multiply_seq_by_intClaudiu Popa2018-10-101-8/+6
* Remove unneeded commentClaudiu Popa2018-10-101-3/+0
* Replace a nested for loop with itertools.productClaudiu Popa2018-10-101-15/+16
* Replace checks against None and Uninferable to boolean checksClaudiu Popa2018-10-103-5/+5
* Replace copy.copy() with a simple set() callClaudiu Popa2018-10-101-9/+1
* Remove the restore_path() methodClaudiu Popa2018-10-101-25/+22
* Simplify the creation of extra_context for _infer_callClaudiu Popa2018-10-101-3/+2
* Use copy_context where it makes senseClaudiu Popa2018-10-103-12/+9
* Let formatting be handled by blackClaudiu Popa2018-10-021-1/+2
* Initial formatting of astroidClaudiu Popa2018-10-0275-5679/+7773
* Rename asspath to assign_path to be more indicative of what it actually meansClaudiu Popa2018-10-021-44/+45
* Reflect AST changes in Python 3.8.Serhiy Storchaka2018-09-303-7/+27
* wildcard-import is no longer emitted on __init__ filesClaudiu Popa2018-09-301-1/+1
* unused-variable is now unused-importClaudiu Popa2018-09-301-1/+1
* ``threading.Lock.acquire`` has the ``timeout`` parameter now.Claudiu Popa2018-09-292-3/+13
* Pass parameters by keyword name when inferring sequences.Claudiu Popa2018-09-282-1/+13
* pytest why are you being so weird? add missing reason keyword argumentClaudiu Popa2018-09-231-1/+1
* Use skipif instead of the missing skipunless and remove test for pygtkClaudiu Popa2018-09-232-23/+2
* Remove test depending on mechanize, we'll most likely not install every libra...Claudiu Popa2018-09-231-25/+0
* Correct line numbering for f-strings for complex embedded expressionsClaudiu Popa2018-09-232-1/+23
* brain_gi: use Exception as a base class for classes inheriting from ExceptionChristoph Reiter2018-09-201-3/+6
* Add digest_size parameter to hashlib.blake2b and blake2sClaudiu Popa2018-09-152-8/+27
* Add blake2s to hashing algorithims.wgehalo2018-09-151-1/+1
* Disable lint errorClaudiu Popa2018-08-231-0/+2
* Mark this release as a dev release. Close #608Claudiu Popa2018-08-231-1/+1
* Filter out ``Uninferable`` when inferring the call result result of a class w...Claudiu Popa2018-08-222-4/+15
* `async` functions are now inferred as `AsyncGenerator` when inferring their c...Claudiu Popa2018-08-165-1/+89
* Simplify the code now that every class is newstyle classClaudiu Popa2018-08-161-10/+7
* Add support for `argparse.Namespace`Claudiu Popa2018-08-151-0/+40
* Prepare 2.0.4astroid-2.0.4Claudiu Popa2018-08-101-1/+1
* Make sure that assign nodes can find ``yield`` statements in their valuesClaudiu Popa2018-08-102-0/+19
* Release 2.0.3 with correct environment markers for pypyastroid-2.0.3Claudiu Popa2018-08-081-1/+1
* Prepare 2.0.2astroid-2.0.2Claudiu Popa2018-08-011-1/+1
* infer_call_result can raise InferenceError so make sure to handle that for th...Claudiu Popa2018-07-316-17/+19
* Cut obsolete "explicit StopIteration" commentsNick Drozd2018-07-304-28/+0
* Spelling fixesVille Skyttä2018-07-2418-46/+46
* Fix lint errorBryce Guinta2018-07-241-0/+1
* Add test for checking that a RuntimeError is no longer emitted in Python 3.7Bryce Guinta2018-07-241-0/+31
* Wrap the inference functions with raise_if_nothing_inferred where we didn't h...Claudiu Popa2018-07-241-1/+16