Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: d9193c67d66c63e329d01cea009bace2ae67480e authored by cvs2svn on 15 February 1994, 16:04:53 UTC
This commit was manufactured by cvs2svn to create tag 'release101'.
Tip revision: d9193c6
test_select.py
# Testing select module

def test():
	import select
	import os
	cmd = 'for i in 0 1 2 3 4 5 6 7 8 9; do date; sleep 3; done'
	p = os.popen(cmd, 'r')
	for tout in (0, 1, 2, 4, 8, 16) + (None,)*10:
		print 'timeout =', tout
		rfd, wfd, xfd = select.select([p], [], [], tout)
		print rfd, wfd, xfd
		if (rfd, wfd, xfd) == ([], [], []):
			continue
		if (rfd, wfd, xfd) == ([p], [], []):
			line = p.readline()
			print `line`
			if not line:
				print 'EOF'
				break
			continue
		print 'Heh?'

test()
back to top