Home | History | Annotate | Download | only in test

Lines Matching refs:exist_ok

1121         self.assertRaises(OSError, os.makedirs, path, mode, exist_ok=False)
1122 os.makedirs(path, 0o776, exist_ok=True)
1123 os.makedirs(path, mode=mode, exist_ok=True)
1127 os.makedirs(os.path.abspath('/'), exist_ok=True)
1148 os.makedirs(path, mode, exist_ok=True)
1152 os.makedirs(path, mode | S_ISGID, exist_ok=True)
1163 self.assertRaises(OSError, os.makedirs, path, exist_ok=False)
1164 self.assertRaises(OSError, os.makedirs, path, exist_ok=True)