MCPcopy Create free account
hub / github.com/numpy/numpy / dist_log

Method dist_log

numpy/distutils/ccompiler_opt.py:692–699  ·  view source on GitHub ↗

Print a console message

(*args, stderr=False)

Source from the content-addressed store, hash-verified

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):

Callers 15

dist_testMethod · 0.95
dist_load_moduleMethod · 0.45
__init__Method · 0.45
cache_flushMethod · 0.45
__init__Method · 0.45
cc_test_flagsMethod · 0.45
cc_test_cexprMethod · 0.45
__init__Method · 0.45
feature_testMethod · 0.45
feature_extra_checksMethod · 0.45
__init__Method · 0.45
parse_targetsMethod · 0.45

Calls 3

_dist_strMethod · 0.80
warnMethod · 0.80
infoMethod · 0.80

Tested by

no test coverage detected