You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
324 B
Python
17 lines
324 B
Python
import fcntl
|
|
import os
|
|
import sys
|
|
|
|
|
|
def shout_stdout(size):
|
|
sys.stdout.write('A' * size)
|
|
return 'success'
|
|
|
|
|
|
def file_is_blocking(fobj):
|
|
return not (fcntl.fcntl(fobj.fileno(), fcntl.F_GETFL) & os.O_NONBLOCK)
|
|
|
|
|
|
def stdio_is_blocking():
|
|
return [file_is_blocking(f) for f in [sys.stdin, sys.stdout, sys.stderr]]
|