Relative Content

Tag Archive for pythonpython-3.x

Why does read block after select in Python?

It is understood that in exceptional circumstances, a read may block after select(2) declares that data is available for reading for something like a network socket, where checksum failures or other buffer manipulations may cause data to be discarded between select and read.