Closed pylint-bot closed 8 years ago
Original comment by Claudiu Popa (BitBucket: PCManticore, GitHub: PCManticore):
UnboundMethod.getattr calls the getattr of its _proxied object.
It previously crashed, since it called super(...).getattr(..) and the first ancestor in its mro was bases.Proxy and bases.Proxy doesn't implement the .getattr method. Closes issue #91.
Original comment by Claudiu Popa (BitBucket: PCManticore, GitHub: PCManticore):
UnboundMethod.getattr calls the getattr of its _proxied object.
It previously crashed, since it called super(...).getattr(..) and the first ancestor in its mro was bases.Proxy and bases.Proxy doesn't implement the .getattr method. Closes issue #91.
Originally reported by: Claudiu Popa (BitBucket: PCManticore, GitHub: PCManticore)
Given the following code, pylint fails with a traceback when it tries to look for not-context-manager error:
The traceback is: