import stackless
import my_scheduler
def a():
	while 1:
		print 'test a'
def b():
	while 1:
		print 'test b'

stackless.tasklet(a)()
stackless.tasklet(b)()
my_scheduler.run()

