mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
closes bpo-34664: Only check file permission bits of newly created directories. (GH-9273)
This commit is contained in:
parent
66755cbb1e
commit
84db4a9978
1 changed files with 2 additions and 2 deletions
|
@ -1131,8 +1131,8 @@ class MakedirTests(unittest.TestCase):
|
|||
self.assertTrue(os.path.exists(path))
|
||||
self.assertTrue(os.path.isdir(path))
|
||||
if os.name != 'nt':
|
||||
self.assertEqual(stat.S_IMODE(os.stat(path).st_mode), 0o555)
|
||||
self.assertEqual(stat.S_IMODE(os.stat(parent).st_mode), 0o775)
|
||||
self.assertEqual(os.stat(path).st_mode & 0o777, 0o555)
|
||||
self.assertEqual(os.stat(parent).st_mode & 0o777, 0o775)
|
||||
|
||||
def test_exist_ok_existing_directory(self):
|
||||
path = os.path.join(support.TESTFN, 'dir1')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue