Closed pylint-bot closed 8 years ago
Original comment by Claudiu Popa (BitBucket: PCManticore, GitHub: @PCManticore):
I presume this is on Python 2? The problem is that re.Scanner is an old style class and super can't be used with it. What will happen is that pylint will warn you about it and the code for bad-super-call will never be triggered.
Originally reported by: Anonymous
Execute
pylint -r n -d all -e bad-super-call FILE
with next file:I expected: Fail bad-super-call
I saw: 0 fails
pylint==1.4.4 (latest from pypi)