This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: asyncore.py poll* missing urgent data
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, jimjjewett, klimkin
Priority: normal Keywords:

Created on 2004-01-29 21:25 by jimjjewett, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (3)
msg19862 - (view) Author: Jim Jewett (jimjjewett) Date: 2004-01-29 21:25
According to the select.poll documentation, polling flags 
include POLLIN (regular data) and POLLPRI (urgent data).

asyncore poll2 and poll3 check readable objects for 
POLLIN, but do not check for POLLPRI.
msg19863 - (view) Author: Alexey Klimkin (klimkin) Date: 2004-03-04 08:23
Logged In: YES 
user_id=410460

Patch #909005 fixes the problem.
msg19864 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2004-03-21 19:35
Logged In: YES 
user_id=11375

The fix from patch #909005 has been commited to CVS HEAD.
History
Date User Action Args
2022-04-11 14:56:02adminsetgithub: 39882
2004-01-29 21:25:21jimjjewettcreate