MCPcopy Index your code
hub / github.com/ekalinin/nodeenv / tarfile_open

Function tarfile_open

nodeenv.py:588–594  ·  view source on GitHub ↗

Compatibility layer because py26.

(*args, **kwargs)

Source from the content-addressed store, hash-verified

586
587@contextlib.contextmanager
588def tarfile_open(*args, **kwargs):
589 """Compatibility layer because py26."""
590 tf = tarfile.open(*args, **kwargs)
591 try:
592 yield tf
593 finally:
594 tf.close()
595
596
597def _download_node_file(node_url, n_attempt=3):

Callers 1

download_node_srcFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…