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
# $Id: Portfile 106686 2013-06-05 02:44:36Z [email protected] $ | |
PortSystem 1.0 | |
name serf1 | |
version 1.2.1 | |
revision 1 | |
categories www | |
maintainers blair | |
license Apache-2 |
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): |