MCPcopy Create free account
hub / github.com/catboost/catboost / _makedirs

Function _makedirs

library/python/port_manager/__init__.py:281–287  ·  view source on GitHub ↗
(path)

Source from the content-addressed store, hash-verified

279
280
281def _makedirs(path):
282 try:
283 os.makedirs(path)
284 except OSError as e:
285 if e.errno == errno.EEXIST:
286 return
287 raise

Callers 1

__init__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected