Replacement for os.path.isdir.
(path)
| 167 | |
| 168 | |
| 169 | def _path_isdir(path): |
| 170 | """Replacement for os.path.isdir.""" |
| 171 | if not path: |
| 172 | path = _os.getcwd() |
| 173 | return _path_is_mode_type(path, 0o040000) |
| 174 | |
| 175 | |
| 176 | if _MS_WINDOWS: |
no test coverage detected
searching dependent graphs…