pylint #3117 hard to override sys.stdout for reporters [resolved]
Ilya Sokolov tell us: this is from pylint/reporters/text.py:49: def __init__(self, output=sys.stdout): BaseReporter.__init__(self, output) self._modules = {} i think it is better to change it in this way: def __init__(self, output=None): if output is None: output=sys.stdout BaseReporter.__init__(self, output) self._modules = {} | |
priority | normal |
---|---|
type | bug |
done in | 0.12.2 |
load | 0.250 |
load left | 0.000 |
closed by | <not specified> |