Created
June 7, 2012 19:59
-
-
Save blair/2891220 to your computer and use it in GitHub Desktop.
pylint bug for http://www.logilab.org/ticket/98613
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from PyQt4 import QtCore | |
class Parent(QtCore.QObject): | |
class InnerClassParent(QtCore.QObject): | |
def parent_do(self): | |
self.emit(QtCore.SIGNAL('FOO')) | |
class Child(Parent): | |
class InnerClassChild(Parent.InnerClassParent): | |
def child_do(self): | |
self.emit(QtCore.SIGNAL('FOO')) | |
m = Child.InnerClassChild() | |
m.child_do() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment