タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

pythonとpollに関するIanLewisのブックマーク (1)

  • select — Wait for I/O Efficiently — PyMOTW 3

    Wait for notification that an input or output channel is ready. The select module provides access to platform-specific I/O monitoring functions. The most portable interface is the POSIX function select(), which is available on Unix and Windows. The module also includes poll(), a Unix-only API, and several options that only work with specific variants of Unix. Note The new selectors module provides

    select — Wait for I/O Efficiently — PyMOTW 3
    IanLewis
    IanLewis 2010/10/03
    The select module provides access to platform-specific I/O monitoring functions. The most portable interface is the POSIX function select(), which is available on Unix and Windows. The module also includes poll(), a Unix-only API, and several options that only work with specific variants of Unix.
  • 1