def testDisable(self):
     utils.SetNonblockFlag(self.tmpfile.fileno(), False)
     self.failIf(
         fcntl.fcntl(self.tmpfile.fileno(), fcntl.F_GETFL) & os.O_NONBLOCK)
 def testEnable(self):
     utils.SetNonblockFlag(self.tmpfile.fileno(), True)
     self.failUnless(
         fcntl.fcntl(self.tmpfile.fileno(), fcntl.F_GETFL) & os.O_NONBLOCK)