Changeset 8495 for branches/jingle/src
- Timestamp:
- 08/15/07 11:28:32 (17 months ago)
- Location:
- branches/jingle/src
- Files:
-
- 2 modified
-
common/xmpp/transports_nb.py (modified) (1 diff)
-
gajim.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/jingle/src/common/xmpp/transports_nb.py
r8492 r8495 587 587 If supplied data is unicode string, encode it to utf-8. 588 588 ''' 589 now = True590 589 if self.state <= 0: 591 590 return -
branches/jingle/src/gajim.py
r8494 r8495 368 368 Start listening for events from fd 369 369 ''' 370 res = gobject.io_add_watch(fd, flags, self.process_events, 371 priority=gobject.PRIORITY_LOW) 370 res = gobject.io_add_watch(fd, flags, self.process_events) 372 371 # store the id of the watch, so that we can remove it on unplug 373 372 self.events[fd] = res … … 2370 2369 # pygtk2.8+ on win, breaks io_add_watch. 2371 2370 # We use good old select.select() 2372 if True oros.name == 'nt':2371 if os.name == 'nt': 2373 2372 gajim.idlequeue = idlequeue.SelectIdleQueue() 2374 2373 else:
