[issue3966] Win32ErrorTests from test_os.py

2010-07-27 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Already fixed in 2.7, 3.1 and 3.2. -- resolution: - out of date stage: - committed/rejected status: open - closed type: - behavior ___ Python tracker rep...@bugs.python.org

[issue3966] Win32ErrorTests from test_os.py

2010-07-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Nice catch Roumen. Mark, can you tell which revisions the bug was fixed in? (writing “rNNN” or “rev NNN” will generate appropriate links) Thanks. -- nosy: +merwok ___ Python tracker

[issue3966] Win32ErrorTests from test_os.py

2010-07-27 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: Éric please see R69364. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue3966 ___ ___

[issue3966] Win32ErrorTests from test_os.py

2010-07-27 Thread Éric Araujo
Éric Araujo mer...@netwok.org added the comment: Thanks. I trust you that the other branches are fixed too; in future messages on other bugs reports, kindly include all revisions involved. I’ve learned that Roundup does not recognize an upper-case R (have I already said I hate implicit

[issue3966] Win32ErrorTests from test_os.py

2010-06-26 Thread Mark Lawrence
Mark Lawrence breamore...@yahoo.co.uk added the comment: 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

[issue3966] Win32ErrorTests from test_os.py

2008-09-25 Thread Roumen Petrov
New submission from Roumen Petrov [EMAIL PROTECTED]: test method - call os.method test_mkdir(self) - os.chdir test_access(self) - os.utime test_chmod(self) - os.utime Is the test correct ? -- messages: 73807 nosy: rpetrov severity: normal status: open title: Win32ErrorTests