This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients brett.cannon, eli.bendersky, giampaolo.rodola, ncoghlan, pitrou, r.david.murray
Date 2011-01-29.12:45:53
SpamBayes Score 0.019453805
Marked as misclassified No
Message-id <1296305154.24.0.225323779244.issue11049@psf.upfronthosting.co.za>
In-reply-to
Content
+        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.
History
Date User Action Args
2011-01-29 12:45:54pitrousetrecipients: + pitrou, brett.cannon, ncoghlan, giampaolo.rodola, r.david.murray, eli.bendersky
2011-01-29 12:45:54pitrousetmessageid: <1296305154.24.0.225323779244.issue11049@psf.upfronthosting.co.za>
2011-01-29 12:45:53pitroulinkissue11049 messages
2011-01-29 12:45:53pitroucreate