Re: [python-win32] select.poll()

2006-05-02 Thread Gabriel Genellina
At Sunday 30/4/2006 05:04, Vahid Noroozi wrote: i have a python program that use sellect.poll() to control some sockets but in windows we doesn't have sellect.poll() You can use select.select() which is available on Windows too. asyncore.poll() is an example. also how can i find

Re: [python-win32] select.poll()

2006-04-24 Thread Gabriel Genellina
At Saturday 22/4/2006 09:56, Vahid Noroozi wrote: in windows python select module doesn't suppport poll() i wanted to know if it is possible to implement poll function by using select.select() function in windows. What do you want to do? select.select() only accepts sockets in Windows, not