Print a console message
(*args, stderr=False)
| 690 | |
| 691 | @staticmethod |
| 692 | def dist_log(*args, stderr=False): |
| 693 | """Print a console message""" |
| 694 | from numpy.distutils import log |
| 695 | out = _Distutils._dist_str(*args) |
| 696 | if stderr: |
| 697 | log.warn(out) |
| 698 | else: |
| 699 | log.info(out) |
| 700 | |
| 701 | @staticmethod |
| 702 | def dist_load_module(name, path): |
no test coverage detected