Document that non-blocking mode isn't always supported on Windows [ci skip]

This commit is contained in:
Jesús Burgos Maciá 2019-07-19 15:59:21 -04:00 коммит произвёл Jeremy Evans
Родитель 676df311d9
Коммит b6f07f748a
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -39,6 +39,10 @@ class IO
#
# read_nonblock causes EOFError on EOF.
#
# On some platforms, such as Windows, non-blocking mode is not supported
# on IO objects other than sockets. In such cases, Errno::EBADF will
# be raised.
#
# If the read byte buffer is not empty,
# read_nonblock reads from the buffer like readpartial.
# In this case, the read(2) system call is not called.