I've got an aui-based application. In one pf the windows I'm running a
jabber client which uses xmppy. This all works dandy, until the second
I pop up a file dialog. When I call dialog.ShowModal() (or
dialog.Show()) in the main thread I instantly get an error in the
other thread:
Unhandled exception in thread started by
Traceback (most recent call last):
File "/home/xxxx/JabberClient.py", line 59, in EventLoop
File "/home/xxx/xmpppy-0.5.0rc1/xmpp/dispatcher.py", line 119, in Process
if self._owner.Connection.pending_data(timeout):
File "/home/xxxx/xmpppy-0.5.0rc1/xmpp/transports.py", line 309, in
pending_data
return self._tcpsock._seen_data or
select.select([self._tcpsock._sock],[],[],timeout)[0]
Has anybody seen anything like this?