That's also kind of what I expected.
However, I quickly tried:
import os
while 1:
y = os.system("sleep 1")
z = (y >> 8) & 0xFF
print zI never get anything in return but 0, hitting c-C or not. I have uset the above code to get exit code returns in the past though. Would there be anything special with sleep? Regards, malv -- http://mail.python.org/mailman/listinfo/python-list
