Re: [python-win32] how to get select behavior for non-socket objects

2007-07-27 Thread Brian Martin
Nevermind, I actually decided to read the above book a little more closely and I think I understand things a little more :) On 7/27/07, Brian Martin <[EMAIL PROTECTED]> wrote: > > Question.. Is 'Python Programming on Win32' the only resource we have so > far or ar

Re: [python-win32] how to get select behavior for non-socket objects

2007-07-27 Thread Brian Martin
]> wrote: > > If you have a Windows handle (such as a handle to the serial port, a > handle to a file, or a socket), you can generally use > win32event.WaitForMultipleObjects() > > Mark > > -Original Message- > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL

[python-win32] how to get select behavior for non-socket objects

2007-07-23 Thread Brian Martin
Hello, I understand that the select module will only work with sockets under windows. Is there a built-in python module for win32 that provides some kind of multiplexing ability for something like a serial port (via pyserial). thanks, brian ___ Python-w