Message127409
+ os.mkdir(os.path.join(TESTFN, TESTFN))
Please don't. This will break the day TESTFN becomes a non-trivial path.
+ def test_make_bad_fd(self):
+ fd = support.make_bad_fd()
+ self.assertRaises(OSError, os.write, fd, b"foo")
You should also check that the errno is EBADF. |
|
Date |
User |
Action |
Args |
2011-01-29 12:45:54 | pitrou | set | recipients:
+ pitrou, brett.cannon, ncoghlan, giampaolo.rodola, r.david.murray, eli.bendersky |
2011-01-29 12:45:54 | pitrou | set | messageid: <1296305154.24.0.225323779244.issue11049@psf.upfronthosting.co.za> |
2011-01-29 12:45:53 | pitrou | link | issue11049 messages |
2011-01-29 12:45:53 | pitrou | create | |
|