Made gevent happy with PyQt.
This commit is contained in:
parent
0aa7efab34
commit
5df22b4181
|
@ -2927,7 +2927,22 @@ class UISignaler(QThread):
|
||||||
else:
|
else:
|
||||||
sys.stderr.write(
|
sys.stderr.write(
|
||||||
'Command sent to UISignaler not recognized: %s\n' % command)
|
'Command sent to UISignaler not recognized: %s\n' % command)
|
||||||
|
try:
|
||||||
|
import gevent
|
||||||
|
except ImportError as ex:
|
||||||
|
print "cannot find gevent"
|
||||||
|
else:
|
||||||
|
def mainloop(app):
|
||||||
|
while True:
|
||||||
|
app.processEvents()
|
||||||
|
while app.hasPendingEvents():
|
||||||
|
app.processEvents()
|
||||||
|
gevent.sleep()
|
||||||
|
gevent.sleep() # don't appear to get here but cooperate again
|
||||||
|
|
||||||
|
def testprint():
|
||||||
|
#print 'this is running'
|
||||||
|
gevent.spawn_later(1, testprint)
|
||||||
|
|
||||||
def run():
|
def run():
|
||||||
app = QtGui.QApplication(sys.argv)
|
app = QtGui.QApplication(sys.argv)
|
||||||
|
@ -2946,5 +2961,8 @@ def run():
|
||||||
myapp.appIndicatorInit(app)
|
myapp.appIndicatorInit(app)
|
||||||
myapp.ubuntuMessagingMenuInit()
|
myapp.ubuntuMessagingMenuInit()
|
||||||
myapp.notifierInit()
|
myapp.notifierInit()
|
||||||
|
if gevent is None:
|
||||||
sys.exit(app.exec_())
|
sys.exit(app.exec_())
|
||||||
|
else:
|
||||||
|
gevent.joinall([gevent.spawn(testprint), gevent.spawn(mainloop, app)])
|
||||||
|
print 'done'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user