Compatibility layer because py26.
(*args, **kwargs)
| 586 | |
| 587 | @contextlib.contextmanager |
| 588 | def 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 | |
| 597 | def _download_node_file(node_url, n_attempt=3): |
no outgoing calls
no test coverage detected
searching dependent graphs…