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 BreamoreBoy
Recipients BreamoreBoy, rpetrov
Date 2010-06-26.11:59:44
SpamBayes Score 0.004012438
Marked as misclassified No
Message-id <1277553587.04.0.313286718339.issue3966@psf.upfronthosting.co.za>
In-reply-to
Content
Here is the code from test_os.py for Python 2.6.5.

def test_mkdir(self):
    self.assertRaises(WindowsError, os.chdir, test_support.TESTFN)
def test_access(self):
    self.assertRaises(WindowsError, os.utime, test_support.TESTFN, 0)
def test_chmod(self):
    self.assertRaises(WindowsError, os.utime, test_support.TESTFN, 0)

The OP is saying shouldn't there be calls to os.mkdir, os.access and os.chmod respectively?
History
Date User Action Args
2010-06-26 11:59:49BreamoreBoysetrecipients: + BreamoreBoy, rpetrov
2010-06-26 11:59:47BreamoreBoysetmessageid: <1277553587.04.0.313286718339.issue3966@psf.upfronthosting.co.za>
2010-06-26 11:59:44BreamoreBoylinkissue3966 messages
2010-06-26 11:59:44BreamoreBoycreate