Poll.unregister() method in Python

Method Name:

poll.unregister

 

Method Signature:

poll.unregister(fileDescriptor)

 

Method Overview:

  • Unregisters a file descriptor, which has been registered earlier with a poll object to poll for I/O events.
  • Using this register(), unregister() sequence on a poll object or using the modify() method, different combinations of I/O events can be polled for at different time points using the same poll object.

Copyright 2026 © pythontic.com