Changeset 8933 for branches/gajim_0.11.2/src/common/xmpp/idlequeue.py
- Timestamp:
- 11/02/07 23:15:23 (13 months ago)
- Files:
-
- 1 modified
-
branches/gajim_0.11.2/src/common/xmpp/idlequeue.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/gajim_0.11.2/src/common/xmpp/idlequeue.py
r7415 r8933 207 207 raise 208 208 for fd in waiting_descriptors[0]: 209 self.queue.get(fd).pollin()210 self.check_time_events()211 return True209 q = self.queue.get(fd) 210 if q: 211 q.pollin() 212 212 for fd in waiting_descriptors[1]: 213 self.queue.get(fd).pollout()214 self.check_time_events()215 return True213 q = self.queue.get(fd) 214 if q: 215 q.pollout() 216 216 for fd in waiting_descriptors[2]: 217 217 self.queue.get(fd).pollend()
