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 scrool
Recipients scrool
Date 2020-05-16.15:47:25
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1589644046.09.0.00935722474106.issue40648@roundup.psfhosted.org>
In-reply-to
Content
From what I can tell only place where file mode is tested is test_mode() method of class TestFilemode in test_stat.py. Relevant section for Windows (os.name != 'posix'):

with open(TESTFN, 'w'):
  pass

...

os.chmod(TESTFN, 0o700)
st_mode, modestr = self.get_mode()
self.assertEqual(modestr[:3], '-rw')
self.assertS_IS("REG", st_mode)
self.assertEqual(self.statmod.S_IFMT(st_mode),
                 self.statmod.S_IFREG)

Doesn't test that files under Windows can have only two modes:
- 0o444 - If os.chmod() is missing stat.S_IWRITE. Effectively readonly.
- 0o666 - Regular file by default.

On the top of that I believe last two assertions are equivalent - test file is regular. But that would be for a different issue, I guess.
History
Date User Action Args
2020-05-16 15:47:26scroolsetrecipients: + scrool
2020-05-16 15:47:26scroolsetmessageid: <1589644046.09.0.00935722474106.issue40648@roundup.psfhosted.org>
2020-05-16 15:47:26scroollinkissue40648 messages
2020-05-16 15:47:25scroolcreate