Issue #25583: Merge makedirs fix from 3.4 into 3.5

This commit is contained in:
Martin Panter 2015-11-20 02:35:46 +00:00
commit 97cabb9fa5
3 changed files with 11 additions and 3 deletions

View file

@ -1040,6 +1040,9 @@ class MakedirTests(unittest.TestCase):
os.makedirs(path, mode=mode, exist_ok=True)
os.umask(old_mask)
# Issue #25583: A drive root could raise PermissionError on Windows
os.makedirs(os.path.abspath('/'), exist_ok=True)
def test_exist_ok_s_isgid_directory(self):
path = os.path.join(support.TESTFN, 'dir1')
S_ISGID = stat.S_ISGID