pylint-bot
pylint-bot
Originally reported by: **Robert Spier (BitBucket: [robert_spier](http://bitbucket.org/robert_spier))** --- Parallelism (--jobs) changes the output of pylint. It's not just the order of the tests, --jobs=2 outputs 18468 lines of output compared...
Originally reported by: **Anonymous** --- Hi, sometimes I have a script in a directory which generates an error like: ``` 1: Invalid module name "pre-commit" (C0103) ``` I'd like to...
Originally reported by: **Fergal Hainey (BitBucket: [FerHai](http://bitbucket.org/FerHai))** --- I'm using pytest and redefined-outer-name is a false negative in these cases as it's part of pytest's design. I'd like to run...
Originally reported by: **Claudiu Popa (BitBucket: [PCManticore](http://bitbucket.org/PCManticore), GitHub: @PCManticore)** --- --- - Bitbucket: https://bitbucket.org/logilab/astroid/issue/213
Originally reported by: **Claudiu Popa (BitBucket: [PCManticore](http://bitbucket.org/PCManticore), GitHub: @PCManticore)** --- We could probably understand this: ``` #!python from collections import namedtuple a = namedtuple('a', 'a b c') f = a(1,...
Use mypy stub files to extract information about arguments and types of builtin and stdlib functions
Originally reported by: **BitBucket: [ceridwenv](http://bitbucket.org/ceridwenv), GitHub: @ceridwen** --- The MyPy people have done a lot of work creating files containing the signatures of builtin/stdlib functions at https://github.com/python/typeshed. By automatically processing...
Originally reported by: **BitBucket: [ceridwenv](http://bitbucket.org/ceridwenv), GitHub: @ceridwen** --- Rename changes the field names but brain_stdlib doesn't handle this. ``` python >>> from astroid import test_utils >>> result = test_utils.extract_node(''' ......
Originally reported by: **Claudiu Popa (BitBucket: [PCManticore](http://bitbucket.org/PCManticore), GitHub: @PCManticore)** --- We should detect namedtuple's indexing, as it is the case for this example: ``` #!python from collections import namedtuple f...
Originally reported by: **Claudiu Popa (BitBucket: [PCManticore](http://bitbucket.org/PCManticore), GitHub: @PCManticore)** --- ``` #!python from astroid.test_utils import extract_node n = extract_node(''' def detectencoding_str(input, final=False): # A bit for every candidate CANDIDATE_UTF_8_SIG =...
Originally reported by: **Claudiu Popa (BitBucket: [PCManticore](http://bitbucket.org/PCManticore), GitHub: @PCManticore)** --- Would be useful to have some of these at least: 1. await accepts only an awaitable 2. type error if...